From e14ee0838d958dcd3a19f4f097a47d0f967ad1f0 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Thu, 26 Apr 2012 14:41:28 -0500 Subject: [PATCH] clean up an error message in preprocessor --- textpre.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textpre.py b/textpre.py index 00bacd62f..35e9c4924 100644 --- a/textpre.py +++ b/textpre.py @@ -414,7 +414,7 @@ def macro_translator(macro, token, line): # check if there are no params (redundant) if len(params) == 1 and params[0] == "": - raise Exception, "ERROR: macro has no params?" + raise Exception, "macro has no params?" # write out a comment showing the original line sys.stdout.write("; original_line: " + original_line)