witten
/
luminotes
Archived
1
0
Fork 0

Fix so None doesn't ever get added to result list, which screws up the parser.

This commit is contained in:
Dan Helfman 2007-07-19 19:06:22 +00:00
parent 24a7205d3a
commit 1ecad1a00c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Html_nuker( HTMLParser ):
"lt": "<",
"gt": ">",
"quot": '"',
}.get ( ref ) )
}.get ( ref, "" ) )
def handle_comment( self, comment ):
pass