You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to Issue 34
This fixed the problems for me:
def __str__(self):
if isinstance(self._previous_exceptions, basestring):
exceptions = self._previous_exceptions
else:
exceptions = "\n".join(["%3d. %s: %s" % (i, e.__class__.__name__, e)
for i, e in enumerate(self._previous_exceptions)])
return "Previous exceptions thrown:\n%s" % (exceptions,)
Original issue reported on code.google.com by [email protected] on 28 Jul 2012 at 2:26
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 28 Jul 2012 at 2:26The text was updated successfully, but these errors were encountered: