aboutsummaryrefslogtreecommitdiff
path: root/utils/submit-grid-jobs
diff options
context:
space:
mode:
Diffstat (limited to 'utils/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