summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevin Carlen <devin.carlen@gmail.com>2011-01-30 15:45:17 -0800
committerDevin Carlen <devin.carlen@gmail.com>2011-01-30 15:45:17 -0800
commit6ed93f6116ed092e64ceef9a255b46167099bfc3 (patch)
tree17a186ec5b3d04abba3e12eb1918d78cf6d19ce6
parenta1a1ee16992c0292de18828cd9bfc93d9bc6c1cc (diff)
downloadnova-6ed93f6116ed092e64ceef9a255b46167099bfc3.tar.gz
nova-6ed93f6116ed092e64ceef9a255b46167099bfc3.tar.xz
nova-6ed93f6116ed092e64ceef9a255b46167099bfc3.zip
pep8
-rw-r--r--nova/adminclient.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/nova/adminclient.py b/nova/adminclient.py
index dc949dd95..4106f0f47 100644
--- a/nova/adminclient.py
+++ b/nova/adminclient.py
@@ -290,7 +290,9 @@ class NovaAdminClient(object):
def get_user(self, name):
"""Grab a single user by name."""
try:
- return self.apiconn.get_object('DescribeUser', {'Name': name}, UserInfo)
+ return self.apiconn.get_object('DescribeUser',
+ {'Name': name},
+ UserInfo)
except boto.exception.BotoServerError, e:
if e.status == 400 and e.error_code == 'NotFound':
return None