From a6237d68257dd3bb963850c205d0ca4a1c46f88a Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 31 Aug 2013 09:29:54 -0500 Subject: [PATCH] remove an Exception from preprocessor It wasn't meant to be left in there anyway. --- preprocessor.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/preprocessor.py b/preprocessor.py index c4a93000a..b6bdfbe7d 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -532,10 +532,7 @@ def macro_translator(macro, token, line): 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