diff options
| author | Jenkins <jenkins@review.openstack.org> | 2011-11-09 05:13:37 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2011-11-09 05:13:37 +0000 |
| commit | 93c02408754e7cec274c6d2580bc04f5e333eade (patch) | |
| tree | 7de59a6d20551403532c81a30e17165fc2045487 | |
| parent | 867a400f3759e0954433b5137b8d35ad9e29a88a (diff) | |
| parent | 19a1911b2b1687025f774bedb49236c31a8e1874 (diff) | |
Merge "Define faults.Fault.__str__."
| -rw-r--r-- | nova/api/openstack/faults.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/api/openstack/faults.py b/nova/api/openstack/faults.py index 52d64c283..83381d755 100644 --- a/nova/api/openstack/faults.py +++ b/nova/api/openstack/faults.py @@ -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): """ |
