summaryrefslogtreecommitdiff
path: root/requests/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'requests/utils.py')
-rw-r--r--requests/utils.py2
1 files changed, 1 insertions, 1 deletions
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):