fix issue with over-escaping aue model

This commit is contained in:
Jay Lee
2019-06-18 14:54:33 -04:00
parent df4de5ce4b
commit e367c86fce
2 changed files with 5 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ class MyHTMLParser(HTMLParser):
output_rows[value] = date
data_is_date = False
else:
model = ''.join(filter(lambda x: x in printable, data)).replace('"', '\\"')
model = ''.join(filter(lambda x: x in printable, data))
data_is_date = True
next_data_is_td = False