diff options
author | Steven Knight <knight@baldmt.com> | 2001-09-13 02:03:37 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-09-13 02:03:37 (GMT) |
commit | 2ce8c28159f0e88494883f61cd05d1342fe90201 (patch) | |
tree | b710c6fcc230f5621556fa17c7eaea6ecf87baf8 /test/errors.py | |
parent | e3e7b09d110ace0334c941eec930f3d651fe1151 (diff) | |
download | SCons-2ce8c28159f0e88494883f61cd05d1342fe90201.zip SCons-2ce8c28159f0e88494883f61cd05d1342fe90201.tar.gz SCons-2ce8c28159f0e88494883f61cd05d1342fe90201.tar.bz2 |
Fix Python 2.1 warning
Diffstat (limited to 'test/errors.py')
-rw-r--r-- | test/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/errors.py b/test/errors.py index a4b05cc..54e26b9 100644 --- a/test/errors.py +++ b/test/errors.py @@ -49,7 +49,7 @@ expect = r"""Traceback \((most recent call|innermost) last\): File "%s", line \d+, in \? main\(\) File "%s", line \d+, in main - exec f + exec f in globals\(\) File "SConstruct3", line \d+, in \? raise InternalError, 'error inside' InternalError: error inside |