Explorar el Código

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é hace 9 años
padre
commit
ce1aaa9dfa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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():