Merge "Update Queue to use python3 compatible code"

This commit is contained in:
Zuul 2018-11-22 16:14:23 +00:00 committed by Gerrit Code Review
commit 1ed30fc137
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#
import socket
import multiprocessing
import Queue as threading_queue
from six.moves import queue as threading_queue
class ThreadQueue(object):