summaryrefslogtreecommitdiff
path: root/keystoneclient/client.py
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-12-17 22:36:59 -0800
committerJesse Andrews <anotherjesse@gmail.com>2011-12-17 22:36:59 -0800
commita8001d3e6c12fd5c09be8c90dc7ada145907dca6 (patch)
treec8da249e309418089424a000027f49098c8e5287 /keystoneclient/client.py
parent0f392a58c33aba4b7e6a6801a2a1e2f38066b57f (diff)
downloadpython-keystoneclient-a8001d3e6c12fd5c09be8c90dc7ada145907dca6.tar.gz
more work on standardization of cliauth
Diffstat (limited to 'keystoneclient/client.py')
-rw-r--r--keystoneclient/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/client.py b/keystoneclient/client.py
index aad2446..a29e34a 100644
--- a/keystoneclient/client.py
+++ b/keystoneclient/client.py
@@ -38,11 +38,11 @@ class HTTPClient(httplib2.Http):
USER_AGENT = 'python-keystoneclient'
- def __init__(self, user_name=None, tenant_id=None, tenant_name=None,
+ def __init__(self, username=None, tenant_id=None, tenant_name=None,
password=None, project_id=None, auth_url=None,
region_name=None, timeout=None, endpoint=None, token=None):
super(HTTPClient, self).__init__(timeout=timeout)
- self.user_name = user_name
+ self.username = username
self.tenant_id = tenant_id
self.tenant_name = tenant_name
self.password = password