Skip to content

Commit

Permalink
Merge 5642971 into 70ef190
Browse files Browse the repository at this point in the history
  • Loading branch information
zhubonan committed Jun 22, 2019
2 parents 70ef190 + 5642971 commit 740e216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiida/cmdline/utils/common.py
Expand Up @@ -253,14 +253,14 @@ def get_calcjob_report(calcjob):
if scheduler_out is None:
report.append('*** Scheduler output: N/A')
elif scheduler_out:
report.append('*** Scheduler output:\n{}'.format(scheduler_out))
report.append(u'*** Scheduler output:\n{}'.format(scheduler_out))
else:
report.append('*** (empty scheduler output file)')

if scheduler_err is None:
report.append('*** Scheduler errors: N/A')
elif scheduler_err:
report.append('*** Scheduler errors:\n{}'.format(scheduler_err))
report.append(u'*** Scheduler errors:\n{}'.format(scheduler_err))
else:
report.append('*** (empty scheduler errors file)')

Expand Down

0 comments on commit 740e216

Please sign in to comment.