We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 271607e commit cfc4389Copy full SHA for cfc4389
CHANGES.txt
@@ -9,6 +9,7 @@ Fixed:
9
- xmlrpc handling of unicode characters and binary values, see
10
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10040
11
thanks to Hauke Duden for reporting these.
12
+- frontends/roundup.cgi got out of sync with the roundup.cgi.Client API
13
14
15
2010-02-23 1.5.0
frontends/roundup.cgi
@@ -120,6 +120,7 @@ class RequestWrapper:
120
'''Used to make the CGI server look like a BaseHTTPRequestHandler
121
'''
122
def __init__(self, wfile):
123
+ self.rfile = sys.stdin
124
self.wfile = wfile
125
def write(self, data):
126
self.wfile.write(data)
0 commit comments