Skip to content

Commit 8207a75

Browse files
author
Richard Jones
committed
fix #white in cgitb
1 parent 1757e69 commit 8207a75

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

BUILD.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ running:
2121
7. python setup.py sdist
2222
(if you find sdist a little verbose, add "--quiet" to the end of the
2323
command)
24-
8. unpack the new dist file in /tmp and a) run_test, and b) demo.py
25-
9. Generate gpg signature with "gpg -a --detach-sign" and upload to
26-
mechanicalcat.net
24+
8. unpack the new dist file in /tmp then a) run_test.py and b) demo.py
25+
with all available Python versions.
26+
9. generate gpg signature with "gpg -a --detach-sign" and upload to
27+
Sourceforge.
2728
10. PyPI registration
2829
11. tag the CVS for the release, eg. "cvs tag -R release-0-6-3"
2930

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Fixed:
99
- fixed activity displaying as future because of Date arithmetic fix in 0.6.3
1010
(sf bug 842027).
1111
- fix Windows service mode for roundup-server (sf bug 819890)
12+
- fixed #white in cgitb (thanks Henrik Levkowetz)
1213

1314

1415
2003-11-14 0.6.3

roundup/cgi/cgitb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# This module was written by Ka-Ping Yee, <[email protected]>.
33
#
4-
# $Id: cgitb.py,v 1.8 2003-01-21 23:54:28 richard Exp $
4+
# $Id: cgitb.py,v 1.8.2.1 2003-12-05 03:38:47 richard Exp $
55

66
__doc__ = """
77
Extended CGI traceback handler by Ka-Ping Yee, <[email protected]>.
@@ -163,7 +163,7 @@ def linereader(file=file, lnum=[lnum]):
163163
line = '<tt>%s&nbsp;%s</tt>' % (number, pydoc.html.preformat(line))
164164
if i == lnum:
165165
line = '''
166-
<table width="100%%" bgcolor="#white" cellspacing=0 cellpadding=0 border=0>
166+
<table width="100%%" bgcolor="white" cellspacing=0 cellpadding=0 border=0>
167167
<tr><td>%s</td></tr></table>''' % line
168168
excerpt.append('\n' + line)
169169
if i == lnum:

0 commit comments

Comments
 (0)