remove an Exception from preprocessor

It wasn't meant to be left in there anyway.
This commit is contained in:
Bryan Bishop 2013-08-31 09:29:54 -05:00
parent 97ef590f9e
commit a6237d6825

View File

@ -532,10 +532,7 @@ def macro_translator(macro, token, line):
index = 0 index = 0
while index < len(params): while index < len(params):
try:
param_type = macro.param_types[index - correction] param_type = macro.param_types[index - correction]
except KeyError as exception:
raise Exception("line is: " + str(line) + " and macro is: " + str(macro))
description = param_type["name"] description = param_type["name"]
param_klass = param_type["class"] param_klass = param_type["class"]
byte_type = param_klass.byte_type # db or dw byte_type = param_klass.byte_type # db or dw