aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2020-04-15 11:13:14 -0500
committertlatorre <tlatorre@uchicago.edu>2020-04-15 11:13:14 -0500
commit3be1c94dfdaba60899343080d8b91fb2c602e549 (patch)
treef20067bf87b39cb9a6edcec888027ace66c5ad66
parent8e4d21d037c23fae5a97d3385c4ae110806439ed (diff)
downloadsddm-3be1c94dfdaba60899343080d8b91fb2c602e549.tar.gz
sddm-3be1c94dfdaba60899343080d8b91fb2c602e549.tar.bz2
sddm-3be1c94dfdaba60899343080d8b91fb2c602e549.zip
fix typo in submit-grid-jobs
-rwxr-xr-xutils/submit-grid-jobs4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/submit-grid-jobs b/utils/submit-grid-jobs
index 8f54c1e..30d9983 100755
--- a/utils/submit-grid-jobs
+++ b/utils/submit-grid-jobs
@@ -361,8 +361,8 @@ def remove_job(submit_file):
for entry in data:
if entry['SubmitFile'] == tail:
try:
- log.debug("condor_remove %s" % entry['ClusterId'])
- check_call(['condor_remove',str(entry['ClusterId'])])
+ log.debug("condor_rm %s" % entry['ClusterId'])
+ check_call(['condor_rm',str(entry['ClusterId'])])
except subprocess.CalledProcessError:
return -1
return 0