Skip to content

Commit 4c26812

Browse files
author
Richard Jones
committed
backport from HEAD
1 parent 48b9da8 commit 4c26812

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Fixed:
77
- Added note to upgrading doc for detectors fix in 0.6.2
88
- added script to help migrating queries from pre-0.6 trackers
99
- Fixed "documentation" of getnodeids in roundup.hyperdb
10+
- added flush() to DevNull (sf bug #835365)
1011

1112

1213
2003-09-29 0.6.2

cgi-bin/roundup.cgi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: roundup.cgi,v 1.35.4.1 2003-09-04 23:30:28 richard Exp $
19+
# $Id: roundup.cgi,v 1.35.4.2 2003-11-03 23:38:42 richard Exp $
2020

2121
# python version check
2222
from roundup import version_check
@@ -57,6 +57,8 @@ class DevNull:
5757
pass
5858
def close(self):
5959
pass
60+
def flush(self):
61+
pass
6062
#LOG = open('/var/log/roundup.cgi.log', 'a')
6163
LOG = DevNull()
6264

0 commit comments

Comments
 (0)