소스 검색

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