#5147: revert accidental indentation of header constant for MozillaCookieJar.

This commit is contained in:
Georg Brandl 2010-07-31 22:11:11 +00:00
parent 241bdab735
commit 87a1564f24
2 changed files with 6 additions and 3 deletions

View File

@ -1974,9 +1974,9 @@ class MozillaCookieJar(FileCookieJar):
"""
magic_re = re.compile("#( Netscape)? HTTP Cookie File")
header = """\
# Netscape HTTP Cookie File
# http://www.netscape.com/newsref/std/cookie_spec.html
# This is a generated file! Do not edit.
# Netscape HTTP Cookie File
# http://www.netscape.com/newsref/std/cookie_spec.html
# This is a generated file! Do not edit.
"""

View File

@ -15,6 +15,9 @@ Core and Builtins
Library
-------
- Issue #5147: Fix the header generated for cookie files written by
http.cookiejar.MozillaCookieJar.
- Issue #8198: In pydoc, output all help text to the correct stream
when sys.stdout is reassigned.