From: Cory Benfield Date: Fri, 23 Aug 2013 11:37:03 +0000 (+0100) Subject: Allow spaces in the no_proxy environ variable. X-Git-Tag: v2.0~5^2~7^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f040b2aa5d5e278ce8a474a7dac3cf5533b36071;p=services%2Fpython-requests.git Allow spaces in the no_proxy environ variable. --- diff --git a/requests/utils.py b/requests/utils.py index 00da266..450b2bd 100644 --- a/requests/utils.py +++ b/requests/utils.py @@ -402,7 +402,7 @@ def get_environ_proxies(url): if no_proxy: # We need to check whether we match here. We need to see if we match # the end of the netloc, both with and without the port. - no_proxy = no_proxy.split(',') + no_proxy = no_proxy.replace(' ', '').split(',') for host in no_proxy: if netloc.endswith(host) or netloc.split(':')[0].endswith(host):