Fix some py3k warnings in the standard library.
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 @@
 
     log.info(msg)
     if not dry_run:
-        apply(func, args)
+        func(*args)
 
 
 def strtobool (val):