]> granicus.if.org Git - python/commitdiff
Typo fix.
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 02:20:43 +0000 (02:20 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 02:20:43 +0000 (02:20 +0000)
Lib/distutils/command/clean.py

index 78166f2642955e70ccfdfc7d3b02d705ce2a891b..8706e57a1e640f31abd6b59020ae584922d65c1a 100644 (file)
@@ -62,7 +62,7 @@ class clean (Command):
             # built distribution will have its own subdirectory under
             # "build/bdist", but they'll be taken care of by
             # 'remove_tree()'.
-            if os.path.exists (self.build_bdist)
+            if os.path.exists (self.build_bdist):
                 remove_tree (self.build_bdist, self.verbose, self.dry_run)
 
         # just for the heck of it, try to remove the base build directory: