diff options
author | Steven Knight <knight@baldmt.com> | 2004-05-06 06:21:43 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-05-06 06:21:43 (GMT) |
commit | b155ebc4a869e0669ee2f7124531e0b5950c7528 (patch) | |
tree | 520cb5708efb85d177a120155048cd8e1361796e /src/script | |
parent | 2a9941e968724723c70f106401fe8b984add626a (diff) | |
download | SCons-b155ebc4a869e0669ee2f7124531e0b5950c7528.zip SCons-b155ebc4a869e0669ee2f7124531e0b5950c7528.tar.gz SCons-b155ebc4a869e0669ee2f7124531e0b5950c7528.tar.bz2 |
Refactor .sconsign management into its own module.
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/sconsign.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/sconsign.py b/src/script/sconsign.py index e3905ce..2204927 100644 --- a/src/script/sconsign.py +++ b/src/script/sconsign.py @@ -146,7 +146,7 @@ import imp import string import whichdb -import SCons.Sig +import SCons.SConsign def my_whichdb(filename): try: @@ -286,7 +286,7 @@ def Do_SConsignDir(name): sys.stderr.write("sconsign: %s\n" % (e)) return try: - sconsign = SCons.Sig.SConsignDir(fp) + sconsign = SCons.SConsign.Dir(fp) except: sys.stderr.write("sconsign: ignoring invalid .sconsign file `%s'\n" % name) return |