diff options
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/unicode.patch | 16 |
2 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/series b/debian/patches/series index 23715f1..8717987 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ no_remote_dtd.patch -unicode.patch diff --git a/debian/patches/unicode.patch b/debian/patches/unicode.patch deleted file mode 100644 index 5dd92aa..0000000 --- a/debian/patches/unicode.patch +++ /dev/null @@ -1,16 +0,0 @@ -Description: Make sure input variable is unicode -Author: Luca Falavigna <dktrkranz@ubuntu.com - -Index: scons-doc-2.0.1/bin/scons-proc.py -=================================================================== ---- scons-doc-2.0.1.orig/bin/scons-proc.py 2011-05-25 20:08:30.011703884 +0000 -+++ scons-doc-2.0.1/bin/scons-proc.py 2011-05-25 20:08:42.501703874 +0000 -@@ -104,7 +104,7 @@ - content = content.replace('-->\n', '-->') - input = xml_preamble + content + xml_postamble - try: -- saxparser.parse(StringIO(input)) -+ saxparser.parse(StringIO(unicode(input))) - except: - sys.stderr.write("error in %s\n" % f) - raise |