diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 20:59:37 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 20:59:37 (GMT) |
commit | 8e6ca8fb1909416be6dd6d25ad5e5a772f19e67e (patch) | |
tree | 12332cab3346704af44a113c3c82bb1ed803dfc4 /Lib | |
parent | 241a04371bb3b1f09d91e1f5877655c54627071c (diff) | |
download | cpython-8e6ca8fb1909416be6dd6d25ad5e5a772f19e67e.zip cpython-8e6ca8fb1909416be6dd6d25ad5e5a772f19e67e.tar.gz cpython-8e6ca8fb1909416be6dd6d25ad5e5a772f19e67e.tar.bz2 |
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')
-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 0b1748c..51944ee 100644 --- a/Lib/plistlib.py +++ b/Lib/plistlib.py @@ -224,7 +224,7 @@ def _escapeAndEncode(text): PLISTHEADER = """\ <?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): |