forked from bellwether/minerva
fixed dataset aggregation; typo; and a bad empty string check
This commit is contained in:
parent
a907be22cc
commit
819bf7abf3
2 changed files with 7 additions and 4 deletions
|
|
@ -10,6 +10,9 @@ with open(file, 'r') as f:
|
|||
txt = f.read()
|
||||
|
||||
for line in txt.split("\n"):
|
||||
if not line.strip():
|
||||
continue
|
||||
|
||||
print(line)
|
||||
athena.cancel(line)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue