From bb22ca20404989a2e3b0df5777f1a802ce03f70d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 21 Nov 2022 09:43:26 +0000 Subject: Replace stdout with sterr as suggested by Jonathan This was a clear trivial error. --- git-bz | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-bz b/git-bz index f1756cd..8f56df7 100755 --- a/git-bz +++ b/git-bz @@ -171,7 +171,7 @@ def git_run(command, *args, **kwargs): # before the next print if error: sys.stderr.write(error.decode()) - sys.stdout.flush() + sys.stderr.flush() if output: sys.stdout.write(output.decode()) sys.stdout.flush() -- cgit