From 9578ae7a5743f73b577082661b355427d4c15929 Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Thu, 4 Apr 2013 21:52:15 -0400 Subject: [PATCH] This fix is in living memory of paroneayea --- hy/lex/states.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hy/lex/states.py b/hy/lex/states.py index 6966a39..72caba6 100644 --- a/hy/lex/states.py +++ b/hy/lex/states.py @@ -236,6 +236,9 @@ class String(State): if char == "\\": self.nodes.append("\\") return + if char == "\"": + self.nodes.append("\"") + return raise LexException("Unknown modifier: `%s'" % (char))