aboutsummaryrefslogtreecommitdiff
path: root/wikimarkup.py
diff options
context:
space:
mode:
Diffstat (limited to 'wikimarkup.py')
-rw-r--r--wikimarkup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/wikimarkup.py b/wikimarkup.py
index aa15ab6..fde1ec1 100644
--- a/wikimarkup.py
+++ b/wikimarkup.py
@@ -39,7 +39,7 @@ envtypes = { "*": [ "unnumbered", 0 ],
":": [ "defn", 1 ]
}
-class BaseWikiMarkup:
+class BaseWikiMarkup(object):
toklist = None
tokind = 0
@@ -87,8 +87,7 @@ class BaseWikiMarkup:
# FIXME?
# FIXME: What's "extra"?
yield({ 'type': 'DELIM',
- 'content': m.group(0),
- 'extra': True })
+ 'content': m.group(0) })
pos += 1
else:
yield({ 'type': 'DELIM',

Return to:

Send suggestions and report system problems to the System administrator.