summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-06-06 14:54:56 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-06-06 14:54:56 (GMT)
commita683233d87f5024b9eb944dd408c3a7c4ed3c1ad (patch)
tree3f93d27ec4dd92e914f8f37cd685be5f207df07b
parent065c1a25d162ee6d47206daa4d88e6129d62a603 (diff)
downloadcpython-a683233d87f5024b9eb944dd408c3a7c4ed3c1ad.zip
cpython-a683233d87f5024b9eb944dd408c3a7c4ed3c1ad.tar.gz
cpython-a683233d87f5024b9eb944dd408c3a7c4ed3c1ad.tar.bz2
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.
-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 8fddeb4..36252d5 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