mirror of https://github.com/borgbackup/borg.git
Revert "no need to flush stderr in my tests"
It is actually necessary, for now.
This reverts commit 8fdd1eddf9
.
Conflicts:
borg/helpers.py
This commit is contained in:
parent
ce1aaa9dfa
commit
e4f325182e
|
@ -197,6 +197,7 @@ class Statistics:
|
||||||
else:
|
else:
|
||||||
msg = ' ' * columns
|
msg = ' ' * columns
|
||||||
print(msg, file=stream or sys.stderr, end="\r")
|
print(msg, file=stream or sys.stderr, end="\r")
|
||||||
|
(stream or sys.stderr).flush()
|
||||||
|
|
||||||
|
|
||||||
def get_keys_dir():
|
def get_keys_dir():
|
||||||
|
|
Loading…
Reference in New Issue