summaryrefslogtreecommitdiffstats
path: root/glustolibs-gluster/glustolibs/gluster/quota_libs.py
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-11-20 16:41:16 +0530
committerBala Konda Reddy M <bmekala@redhat.com>2019-11-21 09:06:42 +0000
commit082f516a33d14c836cd47293cb29c83ae80e294d (patch)
tree81ca6d0c76480d08cc1c418b57a05209d9115040 /glustolibs-gluster/glustolibs/gluster/quota_libs.py
parent489970dda8cc3fdf0b6c1fd26b1662d3ee853d94 (diff)
[py2to3] Replace usage of ".iteitems()" attr with ".items()"
Dict attribute called "iteritems()" is not supported in the py3. So, replace it's usage with another similar attr called "items()". Change-Id: I130b7f67f0a2d5da5ed6c3d792f5ff024ba148f4 Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
Diffstat (limited to 'glustolibs-gluster/glustolibs/gluster/quota_libs.py')
-rwxr-xr-xglustolibs-gluster/glustolibs/gluster/quota_libs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glustolibs-gluster/glustolibs/gluster/quota_libs.py b/glustolibs-gluster/glustolibs/gluster/quota_libs.py
index 5da4d8698..279b90203 100755
--- a/glustolibs-gluster/glustolibs/gluster/quota_libs.py
+++ b/glustolibs-gluster/glustolibs/gluster/quota_libs.py
@@ -54,7 +54,7 @@ def quota_validate(mnode, volname, path, **kwargs):
listinfo = quotalist[path]
ret = True
- for key, value in kwargs.iteritems():
+ for key, value in kwargs.items():
if key and listinfo[key] != value:
g.log.error("%s = %s does not match with expected value %s",
key, str(listinfo[key]), str(value))