Commit 804cbb22 authored by Robert McGibbon's avatar Robert McGibbon
Browse files

Fix for python2?

parent 8f710fb4
......@@ -26,7 +26,7 @@ def striphtmltags(s):
"""
class ConvertLists(HTMLParser):
def reset(self):
super(ConvertLists, self).reset()
HTMLParser.reset(self)
self.out = []
def handle_starttag(self, tag, attrs):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment