Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e606694

Browse files
committed
Merged revisions 71443 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent c4f8b24 commit e606694

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/pydoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ class HTMLDoc(Doc):
415415
def page(self, title, contents):
416416
"""Format an HTML page."""
417417
return '''
418-
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
418+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
419419
<html><head><title>Python: %s</title>
420420
</head><body bgcolor="#f0f0f8">
421421
%s

0 commit comments

Comments
 (0)