diff options
Diffstat (limited to 'distutils2/command/clean.py')
| -rw-r--r-- | distutils2/command/clean.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils2/command/clean.py b/distutils2/command/clean.py index 295cfac..3904085 100644 --- a/distutils2/command/clean.py +++ b/distutils2/command/clean.py @@ -48,7 +48,7 @@ class clean(Command): # gone) if os.path.exists(self.build_temp): if self.dry_run: - logger.info('Removing %s' % self.build_temp) + logger.info('removing %s', self.build_temp) else: rmtree(self.build_temp) else: @@ -62,7 +62,7 @@ class clean(Command): self.build_scripts): if os.path.exists(directory): if self.dry_run: - logger.info('Removing %s' % directory) + logger.info('removing %s', directory) else: rmtree(directory) else: |
