1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-24 15:12:00 +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:
Antoine Beaupré 2015-10-16 11:19:27 -04:00
parent 0d8525ad8f
commit ce1aaa9dfa

View file

@ -196,7 +196,7 @@ def show_progress(self, item=None, final=False, stream=None):
msg += "{0:<{space}}".format(path, space=space) msg += "{0:<{space}}".format(path, space=space)
else: else:
msg = ' ' * columns 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(): def get_keys_dir():