summaryrefslogtreecommitdiff
path: root/requests/auth.py
diff options
context:
space:
mode:
authorMartijn Pieters <mj@zopatista.com>2014-02-03 13:43:59 +0000
committerMartijn Pieters <mj@zopatista.com>2014-02-03 13:43:59 +0000
commit488b90f5acfafe65b428765aea70ebebd4afe58a (patch)
tree9d9724a02d9c58b23d7bf683c6566ec54e8546b0 /requests/auth.py
parentc6084704ccb5610ea093b6b47fb45d2149570174 (diff)
downloadpython-requests-488b90f5acfafe65b428765aea70ebebd4afe58a.tar.gz
Remove unused loggers.
Diffstat (limited to 'requests/auth.py')
-rw-r--r--requests/auth.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/requests/auth.py b/requests/auth.py
index 6664cd80..9f831b7a 100644
--- a/requests/auth.py
+++ b/requests/auth.py
@@ -11,7 +11,6 @@ import os
import re
import time
import hashlib
-import logging
from base64 import b64encode
@@ -19,8 +18,6 @@ from .compat import urlparse, str
from .cookies import extract_cookies_to_jar
from .utils import parse_dict_header
-log = logging.getLogger(__name__)
-
CONTENT_TYPE_FORM_URLENCODED = 'application/x-www-form-urlencoded'
CONTENT_TYPE_MULTI_PART = 'multipart/form-data'