diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:41:28 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:41:28 -0500 |
commit | e14ee0838d958dcd3a19f4f097a47d0f967ad1f0 (patch) | |
tree | 2dbc517776f86a85337f98beee6377d1bf7b6abc | |
parent | 5bc8b861f6f9260606934a22ab05d706963e042d (diff) |
clean up an error message in preprocessor
-rw-r--r-- | textpre.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |