diff options
author | Georg Brandl <georg@python.org> | 2008-02-17 21:18:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-17 21:18:55 (GMT) |
commit | b169eaa91704a44e350cf66c5e68981964b6764d (patch) | |
tree | 1c57c862271612f086c8c78c750121f99f462bcc /Lib/pydoc.py | |
parent | e7fa408741b482f30ed165d760330dbe626e71db (diff) | |
download | cpython-b169eaa91704a44e350cf66c5e68981964b6764d.zip cpython-b169eaa91704a44e350cf66c5e68981964b6764d.tar.gz cpython-b169eaa91704a44e350cf66c5e68981964b6764d.tar.bz2 |
#2133: fix HTML color spec.
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 ee14bf5..8007ed0 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -664,7 +664,7 @@ class HTMLDoc(Doc): contents = self.multicolumn( modules, lambda (key, value), s=self: s.modulelink(value)) result = result + self.bigsection( - 'Modules', '#fffff', '#aa55cc', contents) + 'Modules', '#ffffff', '#aa55cc', contents) if classes: classlist = map(lambda (key, value): value, classes) |