summaryrefslogtreecommitdiff
path: root/keystoneclient/v2_0/tenants.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/v2_0/tenants.py')
-rw-r--r--keystoneclient/v2_0/tenants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/v2_0/tenants.py b/keystoneclient/v2_0/tenants.py
index 46bce56..cee37d1 100644
--- a/keystoneclient/v2_0/tenants.py
+++ b/keystoneclient/v2_0/tenants.py
@@ -81,7 +81,7 @@ class TenantManager(base.ManagerWithFind):
"description": description,
"enabled": enabled}}
- #Allow Extras Passthru and ensure we don't clobber primary arguments.
+ # Allow Extras Passthru and ensure we don't clobber primary arguments.
for k, v in six.iteritems(kwargs):
if k not in params['tenant']:
params['tenant'][k] = v
@@ -131,7 +131,7 @@ class TenantManager(base.ManagerWithFind):
if description is not None:
body['tenant']['description'] = description
- #Allow Extras Passthru and ensure we don't clobber primary arguments.
+ # Allow Extras Passthru and ensure we don't clobber primary arguments.
for k, v in six.iteritems(kwargs):
if k not in body['tenant']:
body['tenant'][k] = v