summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2011-08-04 14:41:54 -0500
committerJosh Kearney <josh@jk0.org>2011-08-04 14:41:54 -0500
commit12404f486a825dc8afdc45db0b10347a3a782e6d (patch)
tree495bd4118e48539e46f334e86a5428c0009d90bd /nova
parentcae90fb1d5a798673416e51c5cf1f7db6cbd6c23 (diff)
Removed temporary debugging raise.
Diffstat (limited to 'nova')
-rw-r--r--nova/exception.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/exception.py b/nova/exception.py
index 8503f8e3e..68e6ac937 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -122,8 +122,7 @@ def wrap_exception(notifier=None, publisher_id=None, event_type=None,
LOG.exception(_('Uncaught exception'))
#logging.error(traceback.extract_stack(exc_traceback))
raise Error(str(e))
- # Don't mask the real exception.
- raise Exception(e)
+ raise
return wraps(f)(wrapped)
return inner