Skip to content

Commit

Permalink
Correctly display the state we're deleting.
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 15, 2015
1 parent 6c4e687 commit 821428d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/saliweb/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ def _delete_all_jobs(self):
job_states = _JobState.get_valid_states()
job_states.remove('EXPIRED')
for s in job_states:
print "Deleting all jobs in %s state"
print "Deleting all jobs in %s state" % s
for g in glob.glob(os.path.join(self.config.directories[s], '*')):
if os.path.isdir(g):
shutil.rmtree(g)
Expand Down

0 comments on commit 821428d

Please sign in to comment.