From 8293063100a5ddb0573669102507a9c27ce8a485 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Wed, 2 Jul 2014 13:40:19 -0700 Subject: [PATCH] Bugfix in Insert() --- recentrunes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recentrunes.py b/recentrunes.py index 77ef877..dca876e 100644 --- a/recentrunes.py +++ b/recentrunes.py @@ -158,7 +158,7 @@ class Insert(Matcher): def match(self, context): yield MatchResult( context, - TextNode(self.value_)) + [TextNode(self._value)]) class Literal(Matcher):