summaryrefslogtreecommitdiffstats
path: root/Parser/asdl.py
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/asdl.py')
-rw-r--r--Parser/asdl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py
index 8fbd9ec..71d3be7 100644
--- a/Parser/asdl.py
+++ b/Parser/asdl.py
@@ -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