Skip to content

Commit

Permalink
Merge branch 'release/3.53.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Sep 9, 2020
2 parents f9aa7ed + b3f1c4d commit 6a1369e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion progressbar/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
long running operations.
'''.strip().split())
__email__ = 'wolph@wol.ph'
__version__ = '3.53.0'
__version__ = '3.53.1'
__license__ = 'BSD'
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
__url__ = 'https://github.com/WoLpH/python-progressbar'
2 changes: 1 addition & 1 deletion progressbar/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def write(self, value):
listener.update()
else:
self.target.write(value)
if '\n' in value:
if '\n' in value: # pragma: no branch
self.flush_target()

def flush(self):
Expand Down

0 comments on commit 6a1369e

Please sign in to comment.