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 @@ class Statistics:
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():