From a274f25bb8f2659e4eacd71b55858783ae50218e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 2 May 2012 21:13:09 +0200 Subject: [PATCH] Fix commit f4b81659. --- src/test.py | 6 +++--- src/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test.py b/src/test.py index d7e167270..8cda368f0 100644 --- a/src/test.py +++ b/src/test.py @@ -503,18 +503,18 @@ def open_http(url, data=None): # check whether the proxy contains authorization information proxy_passwd, host = urllib.splituser(host) # now we proceed with the url we want to obtain - urltype, rest = splittype(selector) + urltype, rest = urllib.splittype(selector) url = rest user_passwd = None if urltype.lower() != 'http': realhost = None else: - realhost, rest = splithost(rest) + realhost, rest = urllib.splithost(rest) if realhost: user_passwd, realhost = urllib.splituser(realhost) if user_passwd: selector = "%s://%s%s" % (urltype, realhost, rest) - if proxy_bypass(realhost): + if urllib.proxy_bypass(realhost): host = realhost #print "proxy via http:", host, selector diff --git a/src/version.py b/src/version.py index 2100d027f..229f228f3 100644 --- a/src/version.py +++ b/src/version.py @@ -1,3 +1,3 @@ """stick the various versioning attributes in here, so we only have to change them once.""" -version = '0.83.4.1+limnoria (2012-05-02T19:06:22+0000)' +version = '0.83.4.1+limnoria (2012-05-02T19:13:09+0000)'