1
0
Fork 0
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:
Jonas Borgström 2014-02-05 20:30:53 +01:00
parent 5abd254a11
commit e4a28f288f

View file

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