Skip to content

Commit 3028d52

Browse files
mjcharnemarkcharney
authored andcommitted
generator.py: fix a couple of error msgs. ii.iclass-> self.iclass
* intelxed#197 Change-Id: I6bdb6c48aa24a9e4660cae5008459488c41b8138 (cherry picked from commit 68888c8716a8084bf652072c85baa682cae53393)
1 parent e827e6d commit 3028d52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pysrc/generator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ def read_structured_flexible(self,lines):
13151315
# extra pattern.
13161316
if len(self.extra_operands) == 0:
13171317
die("Need to have a PATTERN line before the " +
1318-
"OPERANDS line for " + ii.iclass)
1318+
"OPERANDS line for " + self.iclass)
13191319
self.extra_operands[-1] = rest.split()
13201320
else:
13211321
self.operands_input = rest.split()
@@ -1342,7 +1342,7 @@ def read_structured_flexible(self,lines):
13421342
if filling_extra:
13431343
if len(self.extra_iforms_input) == 0:
13441344
die("Need to have a PATTERN line before " +
1345-
"the IFORM line for " + ii.iclass)
1345+
"the IFORM line for " + self.iclass)
13461346
self.extra_iforms_input[-1] = rest
13471347
else:
13481348
self.iform_input = rest

0 commit comments

Comments
 (0)