Skip to content
Snippets Groups Projects

Resolve "Fix error write (link to python3)"

Merged Aurore Dupuis requested to merge 43-fix-error-write-link-to-python3 into develop
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -55,7 +55,8 @@ def call_subprocess(process_list):
stderr=subprocess.PIPE)
out, err = process.communicate()
logging.info(out)
sys.stderr.write(err)
logging.error(err)
sys.stderr.write(str(err))
def str_to_datetime(date_string, format="%Y%m%d"):
""" Return the datetime corresponding to the input string
Loading