Merge "Fixing potential NameErrors"

This commit is contained in:
Jenkins 2013-08-30 21:03:57 +00:00 committed by Gerrit Code Review
commit 78d93fd069

View File

@ -108,7 +108,7 @@ def find_resource(manager, name_or_id):
msg = ("Multiple %s matches found for '%s', use an ID to be more"
" specific." % (manager.resource_class.__name__.lower(),
name_or_id))
raise exc.CommandError(msg)
raise exceptions.CommandError(msg)
def unauthenticated(f):