diff options
| author | Cerberus <matt.dietz@rackspace.com> | 2011-05-09 16:53:16 -0500 |
|---|---|---|
| committer | Cerberus <matt.dietz@rackspace.com> | 2011-05-09 16:53:16 -0500 |
| commit | 6edd5ef387783c13a66a61717d73542d0769d618 (patch) | |
| tree | 409391a98872ed70d2e08f859118d44ceff34810 /nova/utils.py | |
| parent | 4364c3e4103e41fcb8bb0c2af764c37c1ff4afab (diff) | |
| parent | 6f547c6977d3a200f3799067c68dafd24144be0d (diff) | |
Merge from trunk
Diffstat (limited to 'nova/utils.py')
| -rw-r--r-- | nova/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py index b783f6c14..bfcf79216 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -60,7 +60,7 @@ def import_class(import_str): return getattr(sys.modules[mod_str], class_str) except (ImportError, ValueError, AttributeError), exc: LOG.debug(_('Inner Exception: %s'), exc) - raise exception.NotFound(_('Class %s cannot be found') % class_str) + raise exception.ClassNotFound(class_name=class_str) def import_object(import_str): |
