We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9aa7ed + b3f1c4d commit 6a1369eCopy full SHA for 6a1369e
progressbar/__about__.py
@@ -19,7 +19,7 @@
19
long running operations.
20
'''.strip().split())
21
__email__ = 'wolph@wol.ph'
22
-__version__ = '3.53.0'
+__version__ = '3.53.1'
23
__license__ = 'BSD'
24
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
25
__url__ = 'https://github.com/WoLpH/python-progressbar'
progressbar/utils.py
@@ -200,7 +200,7 @@ def write(self, value):
200
listener.update()
201
else:
202
self.target.write(value)
203
- if '\n' in value:
+ if '\n' in value: # pragma: no branch
204
self.flush_target()
205
206
def flush(self):
0 commit comments