remove unused global

Former-commit-id: c55a701885
This commit is contained in:
Robyn Speer 2014-09-02 14:29:31 -04:00
parent b357ffaa09
commit 0c61406cdc

View File

@ -16,10 +16,8 @@ import subprocess
logger = logging.getLogger(__name__)
if sys.version_info.major == 2:
PY2 = True
from urllib import urlretrieve
else:
PY2 = False
from urllib.request import urlretrieve