Skip to content

Commit c7b5e30

Browse files
committed
fixes #11, version bump
1 parent 4967473 commit c7b5e30

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dSQ.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import re
1111
import sys
1212

13-
__version__ = 1.02
13+
__version__ = 1.04
1414

1515
def safe_fill(text, wrap_width):
1616
if sys.__stdin__.isatty():

dSQAutopsy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import os
1010
import sys
1111

12-
__version__ = 1.02
12+
__version__ = 1.04
1313
array_state_header = ["JobID", "State"]
1414
sacct_cmd = ["sacct",
1515
"-o" + ",".join(array_state_header),
@@ -145,7 +145,7 @@ def get_state_status(jid, rerun_states):
145145
args = parser.parse_args()
146146
job_id = args.job_id[0]
147147
rerun_states = []
148-
for state in args.states.split(","):
148+
for state in args.states[0].split(","):
149149
if state in possible_states:
150150
rerun_states.append(state)
151151
else:

dSQBatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111
import time
1212

13-
__version__ = 1.02
13+
__version__ = 1.04
1414

1515
def forward_signal_to_child(pid, signum, frame):
1616
print("[dSQ]: ", pid, signum, frame)

0 commit comments

Comments
 (0)