From 59c6aebd606e3c5fb7b684817faa92051fc0295a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 13 Feb 2011 22:53:14 -0500 Subject: [PATCH] Wow, and AUTO_AUTH works. first try! --- requests/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/core.py b/requests/core.py index 0fa5fd1d..89cc0091 100644 --- a/requests/core.py +++ b/requests/core.py @@ -308,7 +308,7 @@ def _detect_auth(url, auth): def _get_autoauth(url): - for (authauth_url, auth) in AUTOAUTHS: + for (autoauth_url, auth) in AUTOAUTHS: if autoauth_url in url: return auth