Skip to content

Commit

Permalink
Fix urlparse in Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Jan 17, 2019
1 parent 207a149 commit 955b2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from urlparse import urlparse
from urllib2 import urlopen as urlopen
else:
from urllib import parse as urlparse
from urllib.parse import urlparse as urlparse
from urllib.request import urlopen as urlopen

# INSERT_INSTALL_VARIABLES
Expand Down

0 comments on commit 955b2a0

Please sign in to comment.