diff options
author | Joey Hess <joey@kitenet.net> | 2008-03-16 07:00:57 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-03-16 07:00:57 -0400 |
commit | b9a29c3040bc0117bff5ebcde4bbda547eb89785 (patch) | |
tree | f9e676db7890247f59ce8b92b45be911d3e65056 /doc/bugs | |
parent | 646392f3672094b90dec02eff1b0d4ac4ebb0742 (diff) | |
download | ikiwiki-b9a29c3040bc0117bff5ebcde4bbda547eb89785.tar ikiwiki-b9a29c3040bc0117bff5ebcde4bbda547eb89785.tar.gz |
web commit by http://madduck.net/: add patch
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn b/doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn index 49c7eafed..5a5b57c5f 100644 --- a/doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn +++ b/doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn @@ -5,3 +5,20 @@ throwing code..): exceptions.TypeError:coercing to Unicode: need string or buffer, int found --[[Joey]] + +> Does this patch against proxy.py help? + + index 5136b3c..545e226 100755 + --- a/plugins/proxy.py + +++ b/plugins/proxy.py + @@ -88,7 +101,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object): + + @staticmethod + def _write(out_fd, data): + - out_fd.write(data) + + out_fd.write(str(data)) + out_fd.flush() + + @staticmethod + +[[tag patch]] |