diff options
Diffstat (limited to 'openstack/common/excutils.py')
-rw-r--r-- | openstack/common/excutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/excutils.py b/openstack/common/excutils.py index 3cb678e..67c9fa9 100644 --- a/openstack/common/excutils.py +++ b/openstack/common/excutils.py @@ -44,6 +44,6 @@ def save_and_reraise_exception(): yield except Exception: logging.error('Original exception being dropped: %s' % - (traceback.format_exception(type_, value, tb))) + (traceback.format_exception(type_, value, tb))) raise raise type_, value, tb |