minor bug fix
This commit is contained in:
@@ -37,7 +37,7 @@ class HTMLSimpleParser(HTMLParser):
|
|||||||
|
|
||||||
def handle_startendtag(self, tag, attrs):
|
def handle_startendtag(self, tag, attrs):
|
||||||
if tag == 'br':
|
if tag == 'br':
|
||||||
data = data + '\n'
|
self.data = self.data + '\n'
|
||||||
|
|
||||||
def handle_starttag(self, tag, attrs):
|
def handle_starttag(self, tag, attrs):
|
||||||
if tag == 'br':
|
if tag == 'br':
|
||||||
|
|||||||
Reference in New Issue
Block a user