diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-04-15 00:02:59 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-04-15 00:02:59 (GMT) |
commit | 9931fe6c59d330d0dbeea1c51456e3a9f94377d8 (patch) | |
tree | 0e17c9808475e40bfad54db43529ad01d411e6c2 /test/Scanner | |
parent | 12ec17eedc70ee82421b27ff7dd84e947d4e6953 (diff) | |
download | SCons-9931fe6c59d330d0dbeea1c51456e3a9f94377d8.zip SCons-9931fe6c59d330d0dbeea1c51456e3a9f94377d8.tar.gz SCons-9931fe6c59d330d0dbeea1c51456e3a9f94377d8.tar.bz2 |
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Apply the first part of the 'raise' fixer (the three-argument cases are not
converted and will need to wait until native support of with_traceback() is
available).
Diffstat (limited to 'test/Scanner')
-rw-r--r-- | test/Scanner/exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scanner/exception.py b/test/Scanner/exception.py index 1e22931..5af7ac3 100644 --- a/test/Scanner/exception.py +++ b/test/Scanner/exception.py @@ -47,7 +47,7 @@ def kfile_scan(node, env, target, arg): contents = node.get_text_contents() exceptions = exception_re.findall(contents) if exceptions: - raise Exception, "kfile_scan error: %s" % exceptions[0] + raise Exception("kfile_scan error: %s" % exceptions[0]) includes = include_re.findall(contents) return includes |