Skip to content

Commit 8e91e94

Browse files
author
Theofilos Manitaras
committed
Fix for pep8
1 parent e89d322 commit 8e91e94

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reframe/core/schedulers/slurm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,8 @@ def _cancel_if_pending_too_long(self, job):
432432
if t_pending >= job.max_pending_time:
433433
self.log(f'maximum pending time for job exceeded; cancelling it')
434434
self.cancel(job)
435-
job._exception = JobError('maximum pending time exceeded', job.jobid)
435+
job._exception = JobError('maximum pending time exceeded',
436+
job.jobid)
436437

437438
def _cancel_if_blocked(self, job, reasons=None):
438439
if (job.is_cancelling or not slurm_state_pending(job.state)):

0 commit comments

Comments
 (0)