Skip to content

Commit

Permalink
Update exceptions: remove TaskFailed.details from repr
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Leclercq committed Aug 4, 2014
1 parent 50e7c1a commit b75fb0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simpleflow/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, reason, details=None):
self.details = None

def __repr__(self):
return '{}(reason="{}", details="{}")'.format(
return '{}(reason="{}")'.format(
self.__class__.__name__,
self.reason,
self.details)
Expand Down

0 comments on commit b75fb0e

Please sign in to comment.