summaryrefslogtreecommitdiffstats
path: root/glustolibs-gluster/glustolibs/gluster/gluster_base_class.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/gluster_base_class.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/gluster_base_class.py')
-rw-r--r--glustolibs-gluster/glustolibs/gluster/gluster_base_class.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py b/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py
index 97a9fe365..b475eddd1 100644
--- a/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py
+++ b/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py
@@ -856,7 +856,7 @@ class GlusterBlockBaseClass(GlusterBaseClass):
# Log the block_info_dict
g.log.info("Logging Block Info:")
- for key, value in cls.block_info_dict.iteritems():
+ for key, value in cls.block_info_dict.items():
g.log.info("Glusto block info: %s\n %s" % (key, value))
return True