]> granicus.if.org Git - python/commitdiff
Change warning to debug level; it's a very minor issue.
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 6 Jun 2002 14:54:56 +0000 (14:54 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 6 Jun 2002 14:54:56 +0000 (14:54 +0000)
The specific warning is that clean didn't find a directory that should
be removed if it exists.

Lib/distutils/command/clean.py

index 8fddeb453a9fe281f06736e216e0261145d355c1..36252d5174245e214c6aa099f6c08e8ee94db423 100644 (file)
@@ -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