From 955b2a0257c8abeab2842bff42aef5bad34f4fb9 Mon Sep 17 00:00:00 2001 From: Jorge Vicente Cantero Date: Thu, 17 Jan 2019 09:24:05 +0100 Subject: [PATCH] Fix urlparse in Python 3 Fixes https://github.com/scalacenter/homebrew-bloop/issues/4 --- bin/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.py b/bin/install.py index d8e795860e..0e2c601273 100755 --- a/bin/install.py +++ b/bin/install.py @@ -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