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-misc/glustolibs/misc/misc_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glustolibs-misc') diff --git a/glustolibs-misc/glustolibs/misc/misc_libs.py b/glustolibs-misc/glustolibs/misc/misc_libs.py index 7b8010cd9..b66de5efe 100755 --- a/glustolibs-misc/glustolibs/misc/misc_libs.py +++ b/glustolibs-misc/glustolibs/misc/misc_libs.py @@ -557,7 +557,7 @@ def drop_caches(hosts): cmd = "echo 3 > /proc/sys/vm/drop_caches" results = g.run_parallel(hosts, cmd) _rc = True - for host, ret_values in results.iteritems(): + for host, ret_values in results.items(): retcode, _, _ = ret_values if retcode != 0: g.log.error("Unable to drop cache on host %s", host) -- cgit