fix some sync error while using python3

Change-Id: I70925e48756c356d48359679d8ad1b9e33a68595
This commit is contained in:
Dylan Deng
2018-06-23 15:02:26 +08:00
parent 65b0ba5aa0
commit e469a0c741
3 changed files with 12 additions and 3 deletions

View File

@ -20,7 +20,12 @@ import select
import shutil
import stat
from Queue import Queue
from pyversion import is_python3
if is_python3():
from queue import Queue
else:
from Queue import Queue
from threading import Thread