From: Gregory P. Smith Date: Sat, 13 May 2000 02:20:43 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.0b1~1732 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c00848898129ac230fd130f4c7806a398bdfefaf;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py index 78166f264295..8706e57a1e64 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py @@ -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: