summaryrefslogtreecommitdiffstats
path: root/nova/auth
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-06-28 22:47:02 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2010-06-28 22:47:02 -0700
commita013a801246bed9302303c304b90c748e2d7aec0 (patch)
tree36ae3566eb9fa4b5edd2728318fa0f6d4a4acaf2 /nova/auth
parentc363f3239168081d5b87f9ef4690a6123784a024 (diff)
parentc7f7e1bc4185be38ff792bfd82a74e35ecbeda12 (diff)
Merge remote branch 'angst/apply_api' into diekeeper
Diffstat (limited to 'nova/auth')
-rw-r--r--nova/auth/users.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/auth/users.py b/nova/auth/users.py
index 1fc97345f..7b703aa82 100644
--- a/nova/auth/users.py
+++ b/nova/auth/users.py
@@ -350,7 +350,8 @@ class UserManager(object):
user = self.get_user_from_access_key(access_key)
if user == None:
- raise exception.NotFound('No user found for access key')
+ raise exception.NotFound('No user found for access key %s' %
+ access_key)
if project_name is '':
project_name = user.name