Skip to content

Commit

Permalink
Merge "Define faults.Fault.__str__."
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Nov 9, 2011
2 parents 867a400 + 19a1911 commit 93c0240
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nova/api/openstack/faults.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ def __call__(self, req):


return self.wrapped_exc return self.wrapped_exc


def __str__(self):
return self.wrapped_exc.__str__()



class OverLimitFault(webob.exc.HTTPException): class OverLimitFault(webob.exc.HTTPException):
""" """
Expand Down

0 comments on commit 93c0240

Please sign in to comment.