From 4e2ecd698700698dc1ad0daedf910f3dfa53a4ee Mon Sep 17 00:00:00 2001 From: Christopher Davis Date: Sat, 17 Dec 2011 13:48:40 -0600 Subject: [PATCH] Fixed some tab/spaces mixed issues --- requests/models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requests/models.py b/requests/models.py index e043d88..e84c8f1 100644 --- a/requests/models.py +++ b/requests/models.py @@ -409,10 +409,10 @@ class Request(object): conn = poolmanager.proxy_from_url(proxy) _proxy = urlparse(proxy) if '@' in _proxy.netloc: - auth, url = _proxy.netloc.split('@', 1) - self.proxy_auth = HTTPProxyAuth(*auth.split(':', 1)) - r = self.proxy_auth(self) - self.__dict__.update(r.__dict__) + auth, url = _proxy.netloc.split('@', 1) + self.proxy_auth = HTTPProxyAuth(*auth.split(':', 1)) + r = self.proxy_auth(self) + self.__dict__.update(r.__dict__) else: # Check to see if keep_alive is allowed. if self.config.get('keep_alive'): -- 2.7.4