From: Georg Brandl Date: Sat, 1 Apr 2006 07:46:54 +0000 (+0000) Subject: Bug #1458017: make distutils.Log._log more forgiving when passing in X-Git-Tag: v2.5a1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c5a59f80a614df368cb7f545112862b2e7e1d5e;p=thirdparty%2FPython%2Fcpython.git Bug #1458017: make distutils.Log._log more forgiving when passing in msg strings with '%', but without format args. --- diff --git a/Lib/distutils/log.py b/Lib/distutils/log.py index cf3ee136e0ad..95d4c1c5a21f 100644 --- a/Lib/distutils/log.py +++ b/Lib/distutils/log.py @@ -20,7 +20,12 @@ class Log: def _log(self, level, msg, args): if level >= self.threshold: - print msg % args + if not args: + # msg may contain a '%'. If args is empty, + # don't even try to string-format + print msg + else: + print msg % args sys.stdout.flush() def log(self, level, msg, *args):