Skip to content

Commit

Permalink
fixed update_status for multi-process jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdc50 committed Mar 2, 2016
1 parent d6d10b2 commit 4116bd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
CondorPy
========
:condorpy: Python interface for high throughput computing with HTCondor
:Version: 0.1.8
:Version: 0.1.9
:Author: Scott Christensen
:Team: CI-WATER
:Homepage: http://ci-water.github.io/condorpy/
:Team: Tethys Platform
:Homepage: http://tethysplatform.org/condorpy/
:License: BSD 2-Clause

Description:
Expand Down
2 changes: 1 addition & 1 deletion condorpy/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def _update_status(self, sub_job_num=None):
log.error('Error while updating status for job %s: Job not found.', job_id)
raise HTCondorError('Job not found.')

out = out.strip('\"')
out = out.replace('\"', '')
log.info('Job %s status: %s', job_id, out)

if not sub_job_num:
Expand Down

0 comments on commit 4116bd1

Please sign in to comment.