Merge "Define faults.Fault.__str__."

This commit is contained in:
Jenkins 2011-11-09 05:13:37 +00:00 committed by Gerrit Code Review
commit 93c0240875
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ class Fault(webob.exc.HTTPException):
return self.wrapped_exc
def __str__(self):
return self.wrapped_exc.__str__()
class OverLimitFault(webob.exc.HTTPException):
"""