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 kunalpar...@gmail.com on 28 Jul 2012 at 2:26
Original issue reported on code.google.com by
kunalpar...@gmail.com
on 28 Jul 2012 at 2:26