From 082f516a33d14c836cd47293cb29c83ae80e294d Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Wed, 20 Nov 2019 16:41:16 +0530 Subject: [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 --- glustolibs-gluster/glustolibs/gluster/quota_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glustolibs-gluster/glustolibs/gluster/quota_libs.py') 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)) -- cgit