ref: a6237d68257dd3bb963850c205d0ca4a1c46f88a
parent: 97ef590f9ec7a7ae38d98b7cf1fd6947b10b711e
author: Bryan Bishop <[email protected]>
date: Sat Aug 31 05:29:54 EDT 2013
remove an Exception from preprocessor It wasn't meant to be left in there anyway.
--- a/preprocessor.py
+++ b/preprocessor.py
@@ -532,10 +532,7 @@
index = 0
while index < len(params):
- try:
- param_type = macro.param_types[index - correction]
- except KeyError as exception:
- raise Exception("line is: " + str(line) + " and macro is: " + str(macro))
+ param_type = macro.param_types[index - correction]
description = param_type["name"]
param_klass = param_type["class"]
byte_type = param_klass.byte_type # db or dw