From 4116bd1653a83f81e1ecf324a787618d29b137ab Mon Sep 17 00:00:00 2001 From: sdc50 Date: Wed, 2 Mar 2016 11:12:21 -0700 Subject: [PATCH] fixed update_status for multi-process jobs --- README.rst | 6 +++--- condorpy/job.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 3f8daf9..8b881b7 100644 --- a/README.rst +++ b/README.rst @@ -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: diff --git a/condorpy/job.py b/condorpy/job.py index 7c06a71..0e2f2aa 100644 --- a/condorpy/job.py +++ b/condorpy/job.py @@ -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: