Skip to content

Commit 6a1369e

Browse files
committed
Merge branch 'release/3.53.1'
2 parents f9aa7ed + b3f1c4d commit 6a1369e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

progressbar/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long running operations.
2020
'''.strip().split())
2121
__email__ = 'wolph@wol.ph'
22-
__version__ = '3.53.0'
22+
__version__ = '3.53.1'
2323
__license__ = 'BSD'
2424
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
2525
__url__ = 'https://github.com/WoLpH/python-progressbar'

progressbar/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def write(self, value):
200200
listener.update()
201201
else:
202202
self.target.write(value)
203-
if '\n' in value:
203+
if '\n' in value: # pragma: no branch
204204
self.flush_target()
205205

206206
def flush(self):

0 commit comments

Comments
 (0)