diff options
| author | Todd Willey <todd@rubidine.com> | 2010-06-25 22:03:45 -0400 |
|---|---|---|
| committer | Todd Willey <todd@rubidine.com> | 2010-06-25 22:03:45 -0400 |
| commit | c05da9848cdf3390694dfc548c7d09b874c93520 (patch) | |
| tree | b89e9acfef054be5e7b01802b6804f2b4451d1ce /nova/auth | |
| parent | 849282175c38ec419fc037b1698cb4de4efdb833 (diff) | |
Fixes based on code review 27001.
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 1105fea82..b9d77f86f 100644 --- a/nova/auth/users.py +++ b/nova/auth/users.py @@ -328,7 +328,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 %s' % access_key) + raise exception.NotFound('No user found for access key %s' % + access_key) if project_name is '': project_name = user.name |
