Skip to content

Commit 95a41d6

Browse files
committed
remove leftover print message about streaming output of command, this is now printed in block
1 parent cda7bd9 commit 95a41d6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

easybuild/tools/run.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
from easybuild.base import fancylogger
6565
from easybuild.tools.build_log import EasyBuildError, EasyBuildExit, CWD_NOTFOUND_ERROR
66-
from easybuild.tools.build_log import dry_run_msg, print_msg, time_str_since
66+
from easybuild.tools.build_log import dry_run_msg, time_str_since
6767
from easybuild.tools.config import build_option
6868
from easybuild.tools.hooks import RUN_SHELL_CMD, load_hooks, run_hook
6969
from easybuild.tools.output import COLOR_RED, COLOR_YELLOW, colorize, print_error
@@ -507,8 +507,6 @@ def to_cmd_str(cmd):
507507
stdin = stdin.encode()
508508

509509
if stream_output or qa_patterns:
510-
print_msg(f"(streaming) output for command '{cmd_str}':")
511-
512510
# enable non-blocking access to stdout, stderr, stdin
513511
channels = [channel for channel in (proc.stdout, proc.stdin, proc.stderr) if channel is not None]
514512
for channel in channels:

0 commit comments

Comments
 (0)