Commit c4e39c74 authored by Gaetano Raffaele's avatar Gaetano Raffaele
Browse files

ENH: Put regularly delayed syntheses as options if passing an int to -d parameter.

No related merge requests found
Showing with 1 addition and 0 deletions
+1 -0
...@@ -395,6 +395,7 @@ def main(argv): ...@@ -395,6 +395,7 @@ def main(argv):
else: else:
if date_file.isdigit() is True: if date_file.isdigit() is True:
lst, _ = gatherDates(fld, output_folder) lst, _ = gatherDates(fld, output_folder)
lst = [l.split('_')[-2] for l in lst]
date_step = int(date_file) date_step = int(date_file)
date_beg = lst[0][0:4] + '-' + lst[0][4:6] + '-' + lst[0][6:8] date_beg = lst[0][0:4] + '-' + lst[0][4:6] + '-' + lst[0][6:8]
date_end = lst[-1][0:4] + '-' + lst[-1][4:6] + '-' + lst[-1][6:8] date_end = lst[-1][0:4] + '-' + lst[-1][4:6] + '-' + lst[-1][6:8]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment