]> git.proxmox.com Git - mirror_qemu.git/blobdiff - scripts/ordereddict.py
rbd: Clean up qemu_rbd_create()'s detour through QemuOpts
[mirror_qemu.git] / scripts / ordereddict.py
index 7242b5060de134c3e4b7cd41fa10843d7c2e4cdb..2d1d81370bbe40438262f2fe6b463d7caab3380e 100644 (file)
@@ -22,6 +22,7 @@
 
 from UserDict import DictMixin
 
+
 class OrderedDict(dict, DictMixin):
 
     def __init__(self, *args, **kwds):
@@ -117,7 +118,7 @@ class OrderedDict(dict, DictMixin):
         if isinstance(other, OrderedDict):
             if len(self) != len(other):
                 return False
-            for p, q in  zip(self.items(), other.items()):
+            for p, q in zip(self.items(), other.items()):
                 if p != q:
                     return False
             return True