]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Don't use dict.iterkeys()
authorVictor Stinner <vstinner@redhat.com>
Mon, 25 May 2015 14:30:23 +0000 (16:30 +0200)
committerVictor Stinner <vstinner@redhat.com>
Mon, 25 May 2015 20:20:28 +0000 (22:20 +0200)
commit065c56de7139a9c83a1cc3d0394367d81e617454
treeb0614cd38121324ddf4c852a552993056209d2af
parentc2db466995d5e534b6cc87fae917d7ec9109a18c
Don't use dict.iterkeys()

Replace list(dict.iterkeys()) with list(dict). The call to iterkeys() is
useless and the iterkeys() method of dictionaries was removed in
Python 3

Change-Id: I16733643d4b92fe8134eec2549bbd679fe75fb9c
tools/colorizer.py