From: richard Date: Mon, 19 Apr 2010 00:39:01 +0000 (+0000) Subject: frontends/roundup.cgi got out of sync with the roundup.cgi.Client API X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=537ed21e69e8517ee7479a97eb2b6d2da1de8d61;p=roundup.git frontends/roundup.cgi got out of sync with the roundup.cgi.Client API git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4480 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index d14888e..3be78b0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,6 +9,7 @@ Fixed: - xmlrpc handling of unicode characters and binary values, see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10040 thanks to Hauke Duden for reporting these. +- frontends/roundup.cgi got out of sync with the roundup.cgi.Client API 2010-02-23 1.5.0 diff --git a/frontends/roundup.cgi b/frontends/roundup.cgi index d9e6213..7228105 100755 --- a/frontends/roundup.cgi +++ b/frontends/roundup.cgi @@ -120,6 +120,7 @@ class RequestWrapper: '''Used to make the CGI server look like a BaseHTTPRequestHandler ''' def __init__(self, wfile): + self.rfile = sys.stdin self.wfile = wfile def write(self, data): self.wfile.write(data)