diff options
Diffstat (limited to 'Lib/_LWPCookieJar.py')
-rw-r--r-- | Lib/_LWPCookieJar.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/_LWPCookieJar.py b/Lib/_LWPCookieJar.py index 2eb83a6..2c8d456 100644 --- a/Lib/_LWPCookieJar.py +++ b/Lib/_LWPCookieJar.py @@ -12,9 +12,9 @@ libwww-perl, I hope. """ import time, re, logging -from cookielib import reraise_unmasked_exceptions, FileCookieJar, Cookie, \ - MISSING_FILENAME_TEXT, join_header_words, split_header_words, \ - iso2time, time2isoz +from cookielib import (reraise_unmasked_exceptions, FileCookieJar, Cookie, + MISSING_FILENAME_TEXT, join_header_words, split_header_words, + iso2time, time2isoz) def lwp_cookie_str(cookie): """Return string representation of Cookie in an the LWP cookie file format. |