]> granicus.if.org Git - python/commitdiff
Merged revisions 71443 via svnmerge from
authorGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:28:28 +0000 (08:28 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:28:28 +0000 (08:28 +0000)
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.
........

Lib/pydoc.py

index f68e72a5258e5d53437b50c29b7ce9faa725a9d4..49c9aad55bb7f5d161ebe46f7f6426df6386709f 100755 (executable)
@@ -415,7 +415,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