Skip to content

Commit f3cf662

Browse files
author
Richard Jones
committed
fix #white in cgitb
1 parent a59b630 commit f3cf662

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Fixed:
6262
- hard-coded python2.3-ism (socket.timeout) fixed
6363
- fixed activity displaying as future because of Date arithmetic fix in 0.6.3
6464
(sf bug 842027).
65+
- fixed #white in cgitb (thanks Henrik Levkowetz)
66+
6567

6668
2003-11-14 0.6.3
6769
Fixed:

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Sheila King,
7474
Bastian Kleineidam,
7575
Detlef Lannert,
7676
Andrey Lebedev,
77+
Henrik Levkowetz,
7778
Gordon McMillan,
7879
Patrick Ohly,
7980
Luke Opperman,

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.9 2003-12-05 03:36:34 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)