diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-03 08:12:27 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-03 08:12:27 (GMT) |
commit | 8ed338ab44daf3cd681d73156fd1d9b6bed53795 (patch) | |
tree | 97ec91b6619467915a6f7ae73b6a289674518462 /Lib/distutils/command | |
parent | 5dc8ced4a889d36be63f6119e5a055c44dfd9507 (diff) | |
download | cpython-8ed338ab44daf3cd681d73156fd1d9b6bed53795.zip cpython-8ed338ab44daf3cd681d73156fd1d9b6bed53795.tar.gz cpython-8ed338ab44daf3cd681d73156fd1d9b6bed53795.tar.bz2 |
Patch #1104111: Alter setup.py --help and --help-commands.
Diffstat (limited to 'Lib/distutils/command')
-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 1844ffe..02189c5 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py @@ -15,7 +15,7 @@ from distutils import log class clean (Command): - description = "clean up output of 'build' command" + description = "clean up temporary files from 'build' command" user_options = [ ('build-base=', 'b', "base build directory (default: 'build.build-base')"), |