1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Remove import workarounds for Python2

This commit is contained in:
Daniel Martí 2016-01-04 17:19:28 +01:00
parent f1f5836a66
commit 099b45fcca

View File

@ -35,12 +35,7 @@ import hashlib
import socket
import xml.etree.ElementTree as XMLElementTree
try:
# Python 2
from Queue import Queue
except ImportError:
# Python 3
from queue import Queue
from queue import Queue
from zipfile import ZipFile