mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-24 07:01:59 +00:00
Revert "fix conflict between --stats and --progress"
the columns handling fixed that isssue more elegantly
This reverts commit 7f77778419
.
Conflicts:
borg/helpers.py
This commit is contained in:
parent
0d8525ad8f
commit
ce1aaa9dfa
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ def show_progress(self, item=None, final=False, stream=None):
|
|||
msg += "{0:<{space}}".format(path, space=space)
|
||||
else:
|
||||
msg = ' ' * columns
|
||||
print(msg, file=stream or sys.stderr, end=final and "\n" or "\r")
|
||||
print(msg, file=stream or sys.stderr, end="\r")
|
||||
|
||||
|
||||
def get_keys_dir():
|
||||
|
|
Loading…
Reference in a new issue