summaryrefslogtreecommitdiff
path: root/engine/SCons/exitfuncs.py
diff options
context:
space:
mode:
Diffstat (limited to 'engine/SCons/exitfuncs.py')
-rw-r--r--engine/SCons/exitfuncs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/SCons/exitfuncs.py b/engine/SCons/exitfuncs.py
index 6c75d01..0521568 100644
--- a/engine/SCons/exitfuncs.py
+++ b/engine/SCons/exitfuncs.py
@@ -27,7 +27,7 @@ Register functions which are executed when SCons exits for any reason.
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/engine/SCons/exitfuncs.py 4720 2010/03/24 03:14:11 jars"
+__revision__ = "src/engine/SCons/exitfuncs.py 5023 2010/06/14 22:05:46 scons"
@@ -41,7 +41,7 @@ def _run_exitfuncs():
while _exithandlers:
func, targs, kargs = _exithandlers.pop()
- apply(func, targs, kargs)
+ func(*targs, **kargs)
def register(func, *targs, **kargs):
"""register a function to be executed upon normal program termination