Skip to content

Commit 2d4726f

Browse files
authored
Merge pull request #1758 from bpinsard/fix_sge
fix sge plugin __repr__
2 parents fbbbf04 + c65416e commit 2d4726f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/plugins/sge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, job_num, job_queue_state, job_time, job_queue_name, job_slots
5252

5353
def __repr__(self):
5454
return '{:<8d}{:12}{:<3d}{:20}{:8}{}'.format(
55-
self._job_num, self._queue_state, self._job_slots,
55+
self._job_num, self._job_queue_state, self._job_slots,
5656
time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime(self._job_time)),
5757
self._job_queue_name, self._qsub_command_line)
5858

0 commit comments

Comments
 (0)