Skip to content

Commit

Permalink
Merge branch 'release/v3.34.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Oct 30, 2017
2 parents d4cac83 + a2aeef5 commit 288a289
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion progressbar/__about__.py
Expand Up @@ -19,7 +19,7 @@
long running operations.
'''.strip().split())
__email__ = 'wolph@wol.ph'
__version__ = '3.34.3'
__version__ = '3.34.4'
__license__ = 'BSD'
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
__url__ = 'https://github.com/WoLpH/python-progressbar'
2 changes: 1 addition & 1 deletion progressbar/widgets.py
Expand Up @@ -198,7 +198,7 @@ def __call__(self, progress, data, **kwargs):
data[name] = data[key]
else:
data[name] = transform(data[key])
except: # pragma: no cover
except (KeyError, ValueError, IndexError): # pragma: no cover
pass

return FormatWidgetMixin.__call__(self, progress, data, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_stream.py
Expand Up @@ -59,7 +59,7 @@ def test_excepthook():

try:
raise RuntimeError()
except:
except RuntimeError:
progressbar.streams.excepthook(*sys.exc_info())

progressbar.streams.unwrap_excepthook()
Expand Down

0 comments on commit 288a289

Please sign in to comment.