Skip to content

Commit

Permalink
Merge pull request #54 from vizmo/master
Browse files Browse the repository at this point in the history
Fixed exception handling
  • Loading branch information
thesharp committed Jul 28, 2016
2 parents 29de02f + 1609e1e commit 95e24d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daemonize.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,6 @@ def start(self):

try:
self.action(*privileged_action_result)
except Exception as e:
for line in traceback.format_exc(e).split("\n"):
except Exception:
for line in traceback.format_exc().split("\n"):
self.logger.error(line)

0 comments on commit 95e24d2

Please sign in to comment.