Skip to content

Commit 4116bd1

Browse files
committed
fixed update_status for multi-process jobs
1 parent d6d10b2 commit 4116bd1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
CondorPy
33
========
44
:condorpy: Python interface for high throughput computing with HTCondor
5-
:Version: 0.1.8
5+
:Version: 0.1.9
66
:Author: Scott Christensen
7-
:Team: CI-WATER
8-
:Homepage: http://ci-water.github.io/condorpy/
7+
:Team: Tethys Platform
8+
:Homepage: http://tethysplatform.org/condorpy/
99
:License: BSD 2-Clause
1010

1111
Description:

condorpy/job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ def _update_status(self, sub_job_num=None):
459459
log.error('Error while updating status for job %s: Job not found.', job_id)
460460
raise HTCondorError('Job not found.')
461461

462-
out = out.strip('\"')
462+
out = out.replace('\"', '')
463463
log.info('Job %s status: %s', job_id, out)
464464

465465
if not sub_job_num:

0 commit comments

Comments
 (0)