summaryrefslogtreecommitdiff
path: root/cloud/rackspace/rax_cdb_user.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloud/rackspace/rax_cdb_user.py')
-rw-r--r--cloud/rackspace/rax_cdb_user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloud/rackspace/rax_cdb_user.py b/cloud/rackspace/rax_cdb_user.py
index ff54365e..833c00d4 100644
--- a/cloud/rackspace/rax_cdb_user.py
+++ b/cloud/rackspace/rax_cdb_user.py
@@ -89,7 +89,7 @@ def find_user(instance, name):
def save_user(module, cdb_id, name, password, databases, host):
- for arg, value in dict(cdb_id=cdb_id, name=name).iteritems():
+ for arg, value in dict(cdb_id=cdb_id, name=name).items():
if not value:
module.fail_json(msg='%s is required for the "rax_cdb_user" '
'module' % arg)
@@ -144,7 +144,7 @@ def save_user(module, cdb_id, name, password, databases, host):
def delete_user(module, cdb_id, name):
- for arg, value in dict(cdb_id=cdb_id, name=name).iteritems():
+ for arg, value in dict(cdb_id=cdb_id, name=name).items():
if not value:
module.fail_json(msg='%s is required for the "rax_cdb_user"'
' module' % arg)