diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-15 16:00:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-15 16:00:52 (GMT) |
commit | da655cf7ce87bcf3d1efde51358b0f1463131f74 (patch) | |
tree | 8d21d8862be641431cf2b024adabb864ad8657ad /src/script | |
parent | 22d04cc904e082524d81e9cc243c15e9e872d28c (diff) | |
download | SCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.zip SCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.tar.gz SCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.tar.bz2 |
Remove the Node.derived attribute.
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index 1a67e51..b8dc2ff 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -68,7 +68,7 @@ class BuildTask(SCons.Taskmaster.Task): class CleanTask(SCons.Taskmaster.Task): """An SCons clean task.""" def execute(self): - if hasattr(self.target, "builder"): + if self.target.builder: os.unlink(self.target.path) print "Removed " + self.target.path |