diff --git a/ports-mgmt/fastest_sites/Makefile b/ports-mgmt/fastest_sites/Makefile index d9e6149ccf18..0fdd0223de95 100644 --- a/ports-mgmt/fastest_sites/Makefile +++ b/ports-mgmt/fastest_sites/Makefile @@ -2,7 +2,7 @@ PORTNAME= fastest_sites PORTVERSION= 20110317 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt MASTER_SITES= http://www.semicomplete.com/files/fastest_sites/ EXTRACT_SUFX= .py diff --git a/ports-mgmt/fastest_sites/files/patch-fastest__sites-20110317.py b/ports-mgmt/fastest_sites/files/patch-fastest__sites-20110317.py new file mode 100644 index 000000000000..bf96331e013b --- /dev/null +++ b/ports-mgmt/fastest_sites/files/patch-fastest__sites-20110317.py @@ -0,0 +1,11 @@ +--- fastest_sites-20110317.py.orig 2018-01-03 06:06:26 UTC ++++ fastest_sites-20110317.py +@@ -61,7 +61,7 @@ class AsyncConnect(asyncore.dispatcher): + + def ParseURL(self): + #print "Url: %s" % self._url +- (scheme, remainder) = self._url.split(":", 2) ++ (scheme, remainder) = self._url.split(":", 1) + (host, unused_path) = urllib.splithost(remainder) + self._host = host + self._port = AsyncConnect.schemes[scheme.lower()]