Get rid of many apply() calls.
diff --git a/Lib/BaseHTTPServer.py b/Lib/BaseHTTPServer.py
index 043f9b2..195d54a 100644
--- a/Lib/BaseHTTPServer.py
+++ b/Lib/BaseHTTPServer.py
@@ -415,7 +415,7 @@
 
         """
 
-        apply(self.log_message, args)
+        self.log_message(*args)
 
     def log_message(self, format, *args):
         """Log an arbitrary message.