Skip to content
Snippets Groups Projects
Commit 880bcc2e authored by pascal.mouquet_ird.fr's avatar pascal.mouquet_ird.fr
Browse files

bugfix for Job remove

parent 1050fd6e
No related branches found
No related tags found
No related merge requests found
Pipeline #1499 passed
......@@ -624,7 +624,8 @@ class Job:
download_list= []
for index, row in tasks.iterrows():
if bool(setuptools.distutils.util.strtobool(str(row.l1c))):
if not bool(setuptools.distutils.util.strtobool(str(row.remove))):
# if not bool(setuptools.distutils.util.strtobool(str(row.remove))):
if not (row.remove == "False" or not row.remove):
if "l1c" in str(row.remove).lower():
if "l2a" not in str(row.remove).lower():
ref = "l2a"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment