summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>2022-11-21 09:43:26 +0000
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>2022-11-21 09:43:26 +0000
commitbb22ca20404989a2e3b0df5777f1a802ce03f70d (patch)
tree4e4ca3370cd2e13a39295e0c7fa0896f53f77404
parent1baf5042aa6835664d16610dfcb4a3ffb02140f2 (diff)
downloadgit-bz-bb22ca20404989a2e3b0df5777f1a802ce03f70d.tar.gz
Replace stdout with sterr as suggested by Jonathan
This was a clear trivial error.
-rwxr-xr-xgit-bz2
1 files changed, 1 insertions, 1 deletions
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()