Commit 103c4b3e authored by Neal Norwitz's avatar Neal Norwitz

Add missing parameter spotted by Jared Flatow

parent d681dda6
......@@ -181,7 +181,7 @@ class ASDLParser(spark.GenericParser, object):
" sum ::= constructor """
return [constructor[0]]
def p_sum_1(self, ):
def p_sum_1(self, info):
" sum ::= constructor | sum "
constructor, _, sum = info
return [constructor] + sum
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment