diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:50:59 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:50:59 +0000 |
commit | 023862890f9f3de1c71b1e98d59d675312e88afb (patch) | |
tree | 7cb79ee5fb9c9c81b44c6dc44286291f37cee2d4 /Lib/distutils/command/clean.py | |
parent | c7cd138bc2127079642ee8a3f2fa9d58c889dec0 (diff) | |
download | cpython-git-023862890f9f3de1c71b1e98d59d675312e88afb.tar.gz |
added tests for the clean command
Diffstat (limited to 'Lib/distutils/command/clean.py')
-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 ba03d1fff6..90ef35f1ca 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py @@ -11,7 +11,7 @@ from distutils.core import Command from distutils.dir_util import remove_tree from distutils import log -class clean (Command): +class clean(Command): description = "clean up temporary files from 'build' command" user_options = [ |