Skip to content

Commit

Permalink
Fix pyflakes error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mythmon committed Oct 29, 2014
1 parent f72a839 commit 55e657d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hamper/commander.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _hamper_send(self, func, comm, message, encode, tag, vars, kwvars):
format_kwargs.update(comm)
try:
message = message.format(*vars, **format_kwargs)
except (ValueError, KeyError, IndexError) as e:
except (ValueError, KeyError, IndexError):
pass

if encode:
Expand Down

0 comments on commit 55e657d

Please sign in to comment.