summarylogtreecommitdiffstats
path: root/parse_doxygen.patch
diff options
context:
space:
mode:
Diffstat (limited to 'parse_doxygen.patch')
-rw-r--r--parse_doxygen.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/parse_doxygen.patch b/parse_doxygen.patch
new file mode 100644
index 000000000000..951eeebd1fb3
--- /dev/null
+++ b/parse_doxygen.patch
@@ -0,0 +1,11 @@
+--- parse_doxygen.py 2018-02-20 10:09:01.595734780 +0100
++++ parse_doxygen.py.new 2018-02-20 10:09:35.768496224 +0100
+@@ -634,6 +634,8 @@
+ def add_text(text):
+ if text is not None and text.strip():
+ tl = text.split('\n')
++ if isinstance(lines[-1], bytes):
++ lines[-1] = lines[-1].decode('utf-8')
+ lines[-1] += tl[0]
+ lines.extend([indent + line for line in tl[1:]])
+ if text.endswith('\n'):