projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
646392f
)
web commit by http://madduck.net/: add patch
author
Joey Hess
<joey@kitenet.net>
Sun, 16 Mar 2008 11:00:57 +0000
(07:00 -0400)
committer
Joey Hess
<joey@kitenet.net>
Sun, 16 Mar 2008 11:00:57 +0000
(07:00 -0400)
doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn
patch
|
blob
|
history
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 49c7eafed2c6438af496eb58fa89b5cf02c4f693..5a5b57c5f40c6ce733589f30f8719a1ed95af29d 100644
(file)
--- 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]]