diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-04-10 12:38:09 +0000 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2009-04-10 12:38:09 +0000 |
commit | 4bdc4c94730a8f88dff5686d59560bb2215d222c (patch) | |
tree | 1db2bf7b6bbba69239d9841187374cc49d5eb7e5 /Lib/pydoc.py | |
parent | 72c06ede50669e62f1f0186563a56426be19879b (diff) | |
download | cpython-git-4bdc4c94730a8f88dff5686d59560bb2215d222c.tar.gz |
Merged revisions 71443 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71443 | georg.brandl | 2009-04-10 10:20:23 +0200 (Fr, 10 Apr 2009) | 1 line
#5698: Fix casing of !DOCTYPE to conform to W3C specs.
........
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index dda0208edf..3afb9814d2 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -422,7 +422,7 @@ class HTMLDoc(Doc): def page(self, title, contents): """Format an HTML page.""" return ''' -<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html><head><title>Python: %s</title> </head><body bgcolor="#f0f0f8"> %s |