commit 54d056ca38f1a34e08633debd4dfb386d022525e Author: Nick Mathewson nickm@torproject.org Date: Thu Oct 2 09:31:34 2014 -0400
Fix a code wart spotted by Gunes Acar --- lib/trunnel/Grammar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/trunnel/Grammar.py b/lib/trunnel/Grammar.py index d943868..fa30b72 100644 --- a/lib/trunnel/Grammar.py +++ b/lib/trunnel/Grammar.py @@ -983,7 +983,7 @@ class Parser(trunnel.spark.GenericParser, object): return info[0]
def p_ContextDecl(self, info): - " ContextDecl ::= context ID { ContextMembers }""" + " ContextDecl ::= context ID { ContextMembers } " return StructDecl(str(info[1]), info[3], isContext=True)
def p_ContextMembers_1(self, info):