diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-13 02:20:43 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-13 02:20:43 (GMT) |
commit | c00848898129ac230fd130f4c7806a398bdfefaf (patch) | |
tree | f473572be2621d0b2edbea39a96e900ba8cd5b3c | |
parent | 0ec8ef16019fb7f02a3d0d0893532b99d45b5d77 (diff) | |
download | cpython-c00848898129ac230fd130f4c7806a398bdfefaf.zip cpython-c00848898129ac230fd130f4c7806a398bdfefaf.tar.gz cpython-c00848898129ac230fd130f4c7806a398bdfefaf.tar.bz2 |
Typo fix.
-rw-r--r-- | Lib/distutils/command/clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py index 78166f2..8706e57 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: |