From 22d9ecda6c5d880aaaab6171fa54c9c99b6773be Mon Sep 17 00:00:00 2001 From: Kelson Date: Sat, 25 Jun 2016 16:49:11 +0200 Subject: [PATCH] Fix urllib2 improt problem #246 --- gen-custom-android-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen-custom-android-build.py b/gen-custom-android-build.py index e5d4bc295..ad5a9cbf2 100755 --- a/gen-custom-android-build.py +++ b/gen-custom-android-build.py @@ -34,7 +34,7 @@ import shutil import logging from io import StringIO import tempfile -import urllib.request as urllib2 +import urllib2 from collections import OrderedDict from subprocess import call PY3 = sys.version_info.major >= 3