summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2011-04-07 13:55:42 -0500
committerJosh Kearney <josh@jk0.org>2011-04-07 13:55:42 -0500
commit404feb59a829e24e026f793a362e54aad1aaa03f (patch)
tree2d3a731ffba964a1d0478b779cf45646e11b91e3 /nova/api
parent7bd99e33796f1e90b6f8b0b9caa122c541f99015 (diff)
Renamed computeFault to cloudServersFault
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/faults.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/faults.py b/nova/api/openstack/faults.py
index bc97639a0..87118ce19 100644
--- a/nova/api/openstack/faults.py
+++ b/nova/api/openstack/faults.py
@@ -47,7 +47,7 @@ class Fault(webob.exc.HTTPException):
"""Generate a WSGI response based on the exception passed to ctor."""
# Replace the body with fault details.
code = self.wrapped_exc.status_int
- fault_name = self._fault_names.get(code, "computeFault")
+ fault_name = self._fault_names.get(code, "cloudServersFault")
fault_data = {
fault_name: {
'code': code,