2to3 main

This commit is contained in:
Rodolfo García Peñas (kix)
2020-08-28 03:32:43 +02:00
parent d5564828ea
commit 6ec6111896
20 changed files with 56 additions and 56 deletions

View File

@ -14,7 +14,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
try:
from urllib import urlencode
from urllib.parse import urlencode
except ImportError: # python3
from urllib.parse import urlencode
import sys

View File

@ -23,7 +23,7 @@ import sys
import traceback
import threading
try:
from Queue import Queue
from queue import Queue
except ImportError: # python3
from queue import Queue
from collections import deque