Skip to content

Commit

Permalink
fixes #11, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
brevans committed May 19, 2020
1 parent 4967473 commit c7b5e30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dSQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

__version__ = 1.02
__version__ = 1.04

def safe_fill(text, wrap_width):
if sys.__stdin__.isatty():
Expand Down
4 changes: 2 additions & 2 deletions dSQAutopsy.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import os
import sys

__version__ = 1.02
__version__ = 1.04
array_state_header = ["JobID", "State"]
sacct_cmd = ["sacct",
"-o" + ",".join(array_state_header),
Expand Down Expand Up @@ -145,7 +145,7 @@ def get_state_status(jid, rerun_states):
args = parser.parse_args()
job_id = args.job_id[0]
rerun_states = []
for state in args.states.split(","):
for state in args.states[0].split(","):
if state in possible_states:
rerun_states.append(state)
else:
Expand Down
2 changes: 1 addition & 1 deletion dSQBatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys
import time

__version__ = 1.02
__version__ = 1.04

def forward_signal_to_child(pid, signum, frame):
print("[dSQ]: ", pid, signum, frame)
Expand Down

0 comments on commit c7b5e30

Please sign in to comment.