diff options
| author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2016-08-31 08:22:29 +0100 |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2016-08-31 08:22:29 +0100 |
| commit | 3ac5842595463683cbc1d980a8b770d84cef84f9 (patch) | |
| tree | 3246ff986506d8b160aac4227f6eb72158d6fc7d /command/bdist_dumb.py | |
| parent | f3f736a749a120d124e54e325875775c9e124ee0 (diff) | |
| download | python-setuptools-git-3ac5842595463683cbc1d980a8b770d84cef84f9.tar.gz | |
Closes #27904: Improved logging statements to defer formatting until needed.
Diffstat (limited to 'command/bdist_dumb.py')
| -rw-r--r-- | command/bdist_dumb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py index f1bfb249..e9274d92 100644 --- a/command/bdist_dumb.py +++ b/command/bdist_dumb.py @@ -85,7 +85,7 @@ class bdist_dumb(Command): install.skip_build = self.skip_build install.warn_dir = 0 - log.info("installing to %s" % self.bdist_dir) + log.info("installing to %s", self.bdist_dir) self.run_command('install') # And make an archive relative to the root of the |
