diff options
| author | 2013-10-17 07:25:38 -0700 | |
|---|---|---|
| committer | 2013-10-17 07:25:38 -0700 | |
| commit | e8bd46886261aca42917e0d627a0a49b337b02f5 (patch) | |
| tree | 8fc1bb00d8d1ecef435de785e93bbdf911bd9da8 | |
| parent | Fix py3 compatibilty. (diff) | |
| download | mirrorselect-e8bd46886261aca42917e0d627a0a49b337b02f5.tar.gz mirrorselect-e8bd46886261aca42917e0d627a0a49b337b02f5.tar.bz2 mirrorselect-e8bd46886261aca42917e0d627a0a49b337b02f5.zip | |
Fix bug 483232, incorrect urlparse import for python3.
| -rw-r--r-- | mirrorselect/selectors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrorselect/selectors.py b/mirrorselect/selectors.py index 9d718fd..230ca15 100644 --- a/mirrorselect/selectors.py +++ b/mirrorselect/selectors.py @@ -38,7 +38,7 @@ import hashlib if int(sys.version[0]) == 3: import urllib.request, urllib.parse, urllib.error - url_parse = urllib.parse + url_parse = urllib.parse.urlparse url_open = urllib.request.urlopen else: import urllib |
