Skip to content
Snippets Groups Projects
Commit 4cf6af64 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

let distribute_testing.py work with python3.4

parent 53a172f7
No related branches found
No related tags found
No related merge requests found
......@@ -84,8 +84,11 @@ def _redo(processes, keys, *args):
return {k: v for k,v in zip(keys, result)}
except subprocess.CalledProcessError as cpe:
logging.error('*'*79)
logging.error(cpe.stdout)
logging.error(cpe.stderr)
try:
logging.error(cpe.stdout)
logging.error(cpe.stderr)
except AttributeError:
logging.error(cpe.output)
logging.error('*' * 79)
raise cpe
......
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