diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-06-28 22:47:02 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-06-28 22:47:02 -0700 |
| commit | a013a801246bed9302303c304b90c748e2d7aec0 (patch) | |
| tree | 36ae3566eb9fa4b5edd2728318fa0f6d4a4acaf2 /nova/auth | |
| parent | c363f3239168081d5b87f9ef4690a6123784a024 (diff) | |
| parent | c7f7e1bc4185be38ff792bfd82a74e35ecbeda12 (diff) | |
Merge remote branch 'angst/apply_api' into diekeeper
Diffstat (limited to 'nova/auth')
| -rw-r--r-- | nova/auth/users.py | 3 |
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 |
