From 3be1c94dfdaba60899343080d8b91fb2c602e549 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Wed, 15 Apr 2020 11:13:14 -0500 Subject: fix typo in submit-grid-jobs --- utils/submit-grid-jobs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/submit-grid-jobs') 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 -- cgit