From: garyo Date: Fri, 15 Aug 2008 02:55:41 +0000 (+0000) Subject: Fix bug #2138, missing parens after clear call in Entry.must_be_same(). Passes tests... X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8987c0d820b8c4ab7852601bedf4181684770e67;p=scons.git Fix bug #2138, missing parens after clear call in Entry.must_be_same(). Passes tests on Linux. git-svn-id: http://scons.tigris.org/svn/scons/trunk@3278 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py index 99ae8227..6165873c 100644 --- a/src/engine/SCons/Node/FS.py +++ b/src/engine/SCons/Node/FS.py @@ -887,7 +887,7 @@ class Entry(Base): if not self.__class__ is klass: self.__class__ = klass self._morph() - self.clear + self.clear() # The following methods can get called before the Taskmaster has # had a chance to call disambiguate() directly to see if this Entry