mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 09:19:31 +00:00
Remove flush=True argument from print() since it is Python3.3+
This commit is contained in:
parent
5abd254a11
commit
e4a28f288f
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ def report_progress(msg, error=False):
|
|||
if error:
|
||||
error_found = True
|
||||
if error or progress:
|
||||
print(msg, file=sys.stderr, flush=True)
|
||||
print(msg, file=sys.stderr)
|
||||
seen = set()
|
||||
for segment, filename in self.io._segment_names():
|
||||
if progress:
|
||||
|
|
Loading…
Reference in a new issue