diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
commit | 0e9980f75a203ee1b2ac28f76a76239446b271d6 (patch) | |
tree | d1691347ed42925a68cebb2647d83dba6d45cb55 /Lib/distutils | |
parent | 2ee8099bd82b5eea9a3efc54f7bcdd12b54f84cf (diff) | |
download | cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.zip cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.gz cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index 559fcb9..22eccb9 100644 --- a/Lib/distutils/command/bdist_rpm.py +++ b/Lib/distutils/command/bdist_rpm.py @@ -97,24 +97,24 @@ class bdist_rpm (Command): "RPM 2 compatibility mode"), # Add the hooks necessary for specifying custom scripts - ('prep-script=', None, + ('prep-script=', None, "Specify a script for the PREP phase of RPM building"), - ('build-script=', None, + ('build-script=', None, "Specify a script for the BUILD phase of RPM building"), - ('pre-install=', None, + ('pre-install=', None, "Specify a script for the pre-INSTALL phase of RPM building"), - ('install-script=', None, + ('install-script=', None, "Specify a script for the INSTALL phase of RPM building"), - ('post-install=', None, + ('post-install=', None, "Specify a script for the post-INSTALL phase of RPM building"), - ('pre-uninstall=', None, + ('pre-uninstall=', None, "Specify a script for the pre-UNINSTALL phase of RPM building"), - ('post-uninstall=', None, + ('post-uninstall=', None, "Specify a script for the post-UNINSTALL phase of RPM building"), - ('clean-script=', None, + ('clean-script=', None, "Specify a script for the CLEAN phase of RPM building"), ('verify-script=', None, |