diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_LWPCookieJar.py | 2 | ||||
-rw-r--r-- | Lib/_MozillaCookieJar.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_LWPCookieJar.py b/Lib/_LWPCookieJar.py index 76da942..2a4fa7b 100644 --- a/Lib/_LWPCookieJar.py +++ b/Lib/_LWPCookieJar.py @@ -11,7 +11,7 @@ libwww-perl, I hope. """ -import time, re, logging +import time, re from cookielib import (_warn_unhandled_exception, FileCookieJar, LoadError, Cookie, MISSING_FILENAME_TEXT, join_header_words, split_header_words, diff --git a/Lib/_MozillaCookieJar.py b/Lib/_MozillaCookieJar.py index d301374..1776b93 100644 --- a/Lib/_MozillaCookieJar.py +++ b/Lib/_MozillaCookieJar.py @@ -1,6 +1,6 @@ """Mozilla / Netscape cookie loading / saving.""" -import re, time, logging +import re, time from cookielib import (_warn_unhandled_exception, FileCookieJar, LoadError, Cookie, MISSING_FILENAME_TEXT) |