Yaniv Bronhaim has uploaded a new change for review.

Change subject: Using six.iteritems in utils to support python3
......................................................................

Using six.iteritems in utils to support python3

Change-Id: Id1b2208cfb57ec6f35e23f603a05073fc97e0503
Signed-off-by: Yaniv Bronhaim <[email protected]>
---
M lib/vdsm/utils.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/78/51378/1

diff --git a/lib/vdsm/utils.py b/lib/vdsm/utils.py
index 7cf9415..7fcfc8a 100644
--- a/lib/vdsm/utils.py
+++ b/lib/vdsm/utils.py
@@ -817,7 +817,7 @@
     return __hostUUID
 
 symbolerror = {}
-for code, symbol in errno.errorcode.iteritems():
+for code, symbol in six.iteritems(errno.errorcode):
     symbolerror[os.strerror(code)] = symbol
 
 


-- 
To view, visit https://gerrit.ovirt.org/51378
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id1b2208cfb57ec6f35e23f603a05073fc97e0503
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Yaniv Bronhaim <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to