Skip to content

Commit a4deecc

Browse files
committed
fix a small bug in the tokenizer
--HG-- extra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/trunk%40106
1 parent ec00c92 commit a4deecc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tokenizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def tagOpenState(self):
397397
self.parser.parseError()
398398
self.parser.processCharacter(u"<")
399399
self.parser.processCharacter(u">")
400-
self.changeState("dataState")
400+
self.changeState("data")
401401
elif data == u"?":
402402
self.parser.parseError()
403403
self.characterQueue.append(data)

0 commit comments

Comments
 (0)