Переглянути джерело

Revert "fix conflict between --stats and --progress"

the columns handling fixed that isssue more elegantly

This reverts commit 7f777784194b2625272a368c85c0712eb01df2fb.

Conflicts:
	borg/helpers.py
Antoine Beaupré 9 роки тому
батько
коміт
ce1aaa9dfa
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      borg/helpers.py

+ 1 - 1
borg/helpers.py

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