summaryrefslogtreecommitdiff
path: root/Lib/distutils/log.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-07-18 06:16:08 +0000
committerTim Peters <tim.peters@gmail.com>2004-07-18 06:16:08 +0000
commitc71fe97a2c07d09144fd634f442a8ad29c84e0c0 (patch)
treea3058fb9abd3146b5bafd435e449cce2df397876 /Lib/distutils/log.py
parentacbad78022027cf7d94c4b9d60b1a1f44441ad93 (diff)
downloadcpython-c71fe97a2c07d09144fd634f442a8ad29c84e0c0.tar.gz
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Lib/distutils/log.py')
-rw-r--r--Lib/distutils/log.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/distutils/log.py b/Lib/distutils/log.py
index 01420da9af..024e7c28de 100644
--- a/Lib/distutils/log.py
+++ b/Lib/distutils/log.py
@@ -28,16 +28,16 @@ class Log:
def debug(self, msg, *args):
self._log(DEBUG, msg, args)
-
+
def info(self, msg, *args):
self._log(INFO, msg, args)
-
+
def warn(self, msg, *args):
self._log(WARN, msg, args)
-
+
def error(self, msg, *args):
self._log(ERROR, msg, args)
-
+
def fatal(self, msg, *args):
self._log(FATAL, msg, args)