From 738149c9bfb9965d013d01ef99f9bb1c2819e7e8 Mon Sep 17 00:00:00 2001 From: Luca Falavigna Date: Tue, 15 Jun 2010 14:28:22 +0000 Subject: Imported Upstream version 2.0.0 --- src/engine/SCons/exitfuncs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/SCons/exitfuncs.py') diff --git a/src/engine/SCons/exitfuncs.py b/src/engine/SCons/exitfuncs.py index 6c75d01..0521568 100644 --- a/src/engine/SCons/exitfuncs.py +++ b/src/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 -- cgit v1.2.3