Bugfix in Insert()

This commit is contained in:
Ian Gulliver
2014-07-02 13:40:19 -07:00
parent 39457a0f8c
commit 8293063100

View File

@@ -158,7 +158,7 @@ class Insert(Matcher):
def match(self, context): def match(self, context):
yield MatchResult( yield MatchResult(
context, context,
TextNode(self.value_)) [TextNode(self._value)])
class Literal(Matcher): class Literal(Matcher):