diff options
author | Victor Stinner <victor.stinner@enovance.com> | 2014-03-24 18:20:22 +0100 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-03-28 15:04:14 +0000 |
commit | e3b7ecd2bbc5120444b3c1643fb89ccd47e454bb (patch) | |
tree | 81d61ff9d84daf6374ede0db7e7fb9a32d635a95 /swiftclient/multithreading.py | |
parent | cdf6f84c360088d39af1b8e1745c102fc44ac362 (diff) | |
download | python-swiftclient-e3b7ecd2bbc5120444b3c1643fb89ccd47e454bb.tar.gz |
Python 3: Fix module names in import
Use six.moves to fix imports on Python 3.
Change-Id: I35b9405690e9f0607b24d79aa7c00830df954c41
Diffstat (limited to 'swiftclient/multithreading.py')
-rw-r--r-- | swiftclient/multithreading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftclient/multithreading.py b/swiftclient/multithreading.py index cd3c57c..b98702d 100644 --- a/swiftclient/multithreading.py +++ b/swiftclient/multithreading.py @@ -15,7 +15,7 @@ from itertools import chain import sys from time import sleep -from Queue import Queue +from six.moves.queue import Queue from threading import Thread from traceback import format_exception |