aboutsummaryrefslogtreecommitdiff
path: root/wiki2text.py
diff options
context:
space:
mode:
Diffstat (limited to 'wiki2text.py')
-rw-r--r--wiki2text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiki2text.py b/wiki2text.py
index c92dbc0..6308da1 100644
--- a/wiki2text.py
+++ b/wiki2text.py
@@ -151,7 +151,7 @@ class TextWikiMarkup (WikiMarkup):
else:
s = '<' + elt['tag']
if elt['args']:
- s += ' ' + elt['args']
+ s += ' ' + str(elt['args'])
s += '>' + self.format(elt['content']) + '</' + elt['tag'] + '>'
return s

Return to:

Send suggestions and report system problems to the System administrator.