summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-06-06 14:54:56 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2002-06-06 14:54:56 +0000
commit2a830ff3239feb9728542e8b999eeb313426551e (patch)
tree080ce5fd97d6d9e5a06e6c19e25ce3429ece3d90 /Lib/distutils/command
parent2bd12286a968dbff9664237eb0f3c0b302465178 (diff)
downloadcpython-2a830ff3239feb9728542e8b999eeb313426551e.tar.gz
Change warning to debug level; it's a very minor issue.
The specific warning is that clean didn't find a directory that should be removed if it exists.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/clean.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py
index 8fddeb453a..36252d5174 100644
--- a/Lib/distutils/command/clean.py
+++ b/Lib/distutils/command/clean.py
@@ -54,8 +54,8 @@ class clean (Command):
if os.path.exists(self.build_temp):
remove_tree(self.build_temp, dry_run=self.dry_run)
else:
- log.warn("'%s' does not exist -- can't clean it",
- self.build_temp)
+ log.debug("'%s' does not exist -- can't clean it",
+ self.build_temp)
if self.all:
# remove build directories