Attachment 'request_standalone.patch'
Download 1 diff -r ae088388d645 MoinMoin/request/request_standalone.py
2 --- a/MoinMoin/request/request_standalone.py Sun Sep 28 00:13:58 2008 +0200
3 +++ b/MoinMoin/request/request_standalone.py Sun Sep 28 11:47:43 2008 +0200
4 @@ -85,11 +85,17 @@
5 raise RemoteClosedConnection()
6
7 def flush(self):
8 - self.wfile.flush()
9 + try:
10 + self.wfile.flush()
11 + except:
12 + pass
13
14 def finish(self):
15 RequestBase.finish(self)
16 - self.wfile.flush()
17 + try:
18 + self.wfile.flush()
19 + except:
20 + pass
21
22 # Headers ----------------------------------------------------------
23
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.