diff options
author | Martin Renvoize <martin.renvoize@ptfs-europe.com> | 2022-11-21 09:43:26 +0000 |
---|---|---|
committer | Martin Renvoize <martin.renvoize@ptfs-europe.com> | 2022-11-21 09:43:26 +0000 |
commit | bb22ca20404989a2e3b0df5777f1a802ce03f70d (patch) | |
tree | 4e4ca3370cd2e13a39295e0c7fa0896f53f77404 | |
parent | 1baf5042aa6835664d16610dfcb4a3ffb02140f2 (diff) | |
download | git-bz-bb22ca20404989a2e3b0df5777f1a802ce03f70d.tar.gz |
Replace stdout with sterr as suggested by Jonathan
This was a clear trivial error.
-rwxr-xr-x | git-bz | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |