summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/Python.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-06-02 05:34:57 (GMT)
committerSteven Knight <knight@baldmt.com>2004-06-02 05:34:57 (GMT)
commitf0eef8baab59eaf981656f5507f17c83ee096a0a (patch)
treef4275d1ccea514965b71d4bbd739022b799ddf02 /src/engine/SCons/Node/Python.py
parent094a011d49d4ba19f276983d848cf93bfc951b41 (diff)
downloadSCons-f0eef8baab59eaf981656f5507f17c83ee096a0a.zip
SCons-f0eef8baab59eaf981656f5507f17c83ee096a0a.tar.gz
SCons-f0eef8baab59eaf981656f5507f17c83ee096a0a.tar.bz2
Make the use of the calc argument in Node methods consistent.
Diffstat (limited to 'src/engine/SCons/Node/Python.py')
-rw-r--r--src/engine/SCons/Node/Python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/Python.py b/src/engine/SCons/Node/Python.py
index e15888b..28ff674 100644
--- a/src/engine/SCons/Node/Python.py
+++ b/src/engine/SCons/Node/Python.py
@@ -62,7 +62,7 @@ class Value(SCons.Node.Node):
contents = contents + kid.get_contents()
return contents
- def calc_csig(self, calc):
+ def calc_csig(self, calc=None):
"""Because we're a Python value node and don't have a real
timestamp, we get to ignore the calculator and just use the
value contents."""