From 537ed21e69e8517ee7479a97eb2b6d2da1de8d61 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 19 Apr 2010 00:39:01 +0000 Subject: [PATCH] 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 --- CHANGES.txt | 1 + frontends/roundup.cgi | 1 + 2 files changed, 2 insertions(+) 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) -- 2.30.2