diff options
| author | Greg Noel <GregNoel@tigris.org> | 2008-09-12 08:14:45 (GMT) |
|---|---|---|
| committer | Greg Noel <GregNoel@tigris.org> | 2008-09-12 08:14:45 (GMT) |
| commit | d23fa934f9057475f222c1241ffb22662ce005c2 (patch) | |
| tree | e7744279f1544fddc060b085c2ca417dd097755e /src/engine | |
| parent | d89e09084a620e1b8623b9329c2fa29c0e7980df (diff) | |
| download | SCons-d23fa934f9057475f222c1241ffb22662ce005c2.zip SCons-d23fa934f9057475f222c1241ffb22662ce005c2.tar.gz SCons-d23fa934f9057475f222c1241ffb22662ce005c2.tar.bz2 | |
Fix errors that cropped up in revision 3382
Diffstat (limited to 'src/engine')
| -rw-r--r-- | src/engine/SCons/Job.py | 1 | ||||
| -rw-r--r-- | src/engine/SCons/Script/Interactive.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/SCons/Job.py b/src/engine/SCons/Job.py index fec50aa..e6d02e4 100644 --- a/src/engine/SCons/Job.py +++ b/src/engine/SCons/Job.py @@ -34,6 +34,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os import signal +import SCons # The default stack size (in kilobytes) of the threads used to execute # jobs in parallel. diff --git a/src/engine/SCons/Script/Interactive.py b/src/engine/SCons/Script/Interactive.py index 9510892..a024a9e 100644 --- a/src/engine/SCons/Script/Interactive.py +++ b/src/engine/SCons/Script/Interactive.py @@ -98,7 +98,7 @@ try: except ImportError: pass -from SCons.Debug import Trace +import SCons class SConsInteractiveCmd(cmd.Cmd): """\ |
