diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 21:00:34 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 21:00:34 (GMT) |
commit | 33798fde76327161e4154bb3b6e774ebe5e902eb (patch) | |
tree | 6e5a06cf5e96d0405afbae1706ece9dc14dc75a0 /Lib/plistlib.py | |
parent | 2eaef05c4727f9eb4abda89eba5dd90053cfcb41 (diff) | |
download | cpython-33798fde76327161e4154bb3b6e774ebe5e902eb.zip cpython-33798fde76327161e4154bb3b6e774ebe5e902eb.tar.gz cpython-33798fde76327161e4154bb3b6e774ebe5e902eb.tar.bz2 |
Merged revisions 80279 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80279 | ronald.oussoren | 2010-04-20 22:59:37 +0200 (Tue, 20 Apr 2010) | 3 lines
Fix for issue 7852: the DTD for OSX Plists has changed due
to a change in the company name for Apple.
........
Diffstat (limited to 'Lib/plistlib.py')
-rw-r--r-- | Lib/plistlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plistlib.py b/Lib/plistlib.py index fbba791..82d456a 100644 --- a/Lib/plistlib.py +++ b/Lib/plistlib.py @@ -186,7 +186,7 @@ def _escape(text): PLISTHEADER = b"""\ <?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> """ class PlistWriter(DumbXMLWriter): |