We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c104e commit 40a6207Copy full SHA for 40a6207
easybuild/tools/run.py
@@ -588,15 +588,15 @@ def to_cmd_str(cmd):
588
raise EasyBuildError(error_msg)
589
try:
590
t = timeout - (time.time() - start) if timeout else None
591
- stdout += read_pipe(proc.stdout, timeout=t) or b''
+ stdout += read_pipe(proc.stdout, timeout=t)
592
except TimeoutError:
593
pass
594
595
# note: we assume that there won't be any questions in stderr output
596
if split_stderr:
597
598
599
- stderr += read_pipe(proc.stderr, timeout=t) or b''
+ stderr += read_pipe(proc.stderr, timeout=t)
600
601
602
0 commit comments