summaryrefslogtreecommitdiffstats
path: root/Lib/_MozillaCookieJar.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-05-18 06:18:06 (GMT)
committerGeorg Brandl <georg@python.org>2006-05-18 06:18:06 (GMT)
commitbbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3 (patch)
tree4464a86140806fd46b5bb88de75da93c879622cd /Lib/_MozillaCookieJar.py
parente4751e3cdc8c271f24e46a6155f255b6e33da158 (diff)
downloadcpython-bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3.zip
cpython-bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3.tar.gz
cpython-bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3.tar.bz2
Remove unused import.
Diffstat (limited to 'Lib/_MozillaCookieJar.py')
-rw-r--r--Lib/_MozillaCookieJar.py2
1 files changed, 1 insertions, 1 deletions
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)