summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/clean.py2
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: