summaryrefslogtreecommitdiffstats
path: root/nova/auth
diff options
context:
space:
mode:
authorTodd Willey <todd@rubidine.com>2010-06-25 18:55:14 -0400
committerTodd Willey <todd@rubidine.com>2010-06-25 18:55:14 -0400
commit849282175c38ec419fc037b1698cb4de4efdb833 (patch)
tree0deab000fe0a95e05df55d3392a5169aa35cbe3b /nova/auth
parent8a2f1763cbadd47f6ce26467ac9f82bc9b436d2a (diff)
downloadnova-849282175c38ec419fc037b1698cb4de4efdb833.tar.gz
nova-849282175c38ec419fc037b1698cb4de4efdb833.tar.xz
nova-849282175c38ec419fc037b1698cb4de4efdb833.zip
Admin API + Worker Tracking.
Diffstat (limited to 'nova/auth')
-rw-r--r--nova/auth/users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/auth/users.py b/nova/auth/users.py
index 6997596aa..1105fea82 100644
--- a/nova/auth/users.py
+++ b/nova/auth/users.py
@@ -328,7 +328,7 @@ 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