summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/util.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-07 12:14:25 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-07 12:14:25 (GMT)
commit1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07 (patch)
tree42dc10540da9b1aff1d4e6cef51e4c11ce4f5b47 /Lib/distutils/util.py
parent2a4ab816332a67150fcc8ece255fb1ee8e66af83 (diff)
downloadcpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.zip
cpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.tar.gz
cpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.tar.bz2
Fix some py3k warnings in the standard library.
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r--Lib/distutils/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index 36ac721..1a55f70 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -406,7 +406,7 @@ def execute (func, args, msg=None, verbose=0, dry_run=0):
log.info(msg)
if not dry_run:
- apply(func, args)
+ func(*args)
def strtobool (val):