| commit | 68468eba635570400f607e140425a222018e56f9 | [log] [tgz] |
|---|---|---|
| author | Guido van Rossum <guido@python.org> | Thu Feb 27 20:14:51 2003 +0000 |
| committer | Guido van Rossum <guido@python.org> | Thu Feb 27 20:14:51 2003 +0000 |
| tree | 2176c8822392383a88caa0a2209a1d2f3446d45c | |
| parent | f389c7727362321a91dbaff13b7e1cef6cbaa3d8 [diff] [blame] |
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.