From f040b2aa5d5e278ce8a474a7dac3cf5533b36071 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Fri, 23 Aug 2013 12:37:03 +0100 Subject: [PATCH] Allow spaces in the no_proxy environ variable. --- requests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/utils.py b/requests/utils.py index 00da2669..450b2bd3 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):