[Pkg-mozext-commits] [adblock-plus] 200/464: Handle IPv6 addresses correctly in case this ever works

David Prévot taffit at moszumanska.debian.org
Tue Jul 22 20:44:17 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository adblock-plus.

commit f1dc9c76850b0ba3c27da8fc023bb8a946020203
Author: Wladimir Palant <trev at adblockplus.org>
Date:   Fri Jan 13 17:45:02 2012 +0100

    Handle IPv6 addresses correctly in case this ever works
---
 build.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.py b/build.py
index c57fa41..ab75168 100644
--- a/build.py
+++ b/build.py
@@ -191,7 +191,7 @@ def runAutoInstall(baseDir, scriptName, opts, args, type):
     return
 
   if ':' in args[0]:
-    host, port = args[0].split(':', 1)
+    host, port = args[0].rsplit(':', 1)
   else:
     host, port = ('localhost', args[0])
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/adblock-plus.git



More information about the Pkg-mozext-commits mailing list