diff options
author | Georg Brandl <georg@python.org> | 2010-08-02 19:16:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-02 19:16:34 (GMT) |
commit | 56be37cef2c102190b88c015ca9820821f35792a (patch) | |
tree | 6073c65f1aaf7b0ca5e5e99ec092fee777b21211 /Doc/distutils | |
parent | dee7b8503da8ef8aaa10df54e465911fe163c917 (diff) | |
download | cpython-56be37cef2c102190b88c015ca9820821f35792a.zip cpython-56be37cef2c102190b88c015ca9820821f35792a.tar.gz cpython-56be37cef2c102190b88c015ca9820821f35792a.tar.bz2 |
#7973: Fix distutils options spelling.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/builtdist.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index d3c067b..581f0f6 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -176,7 +176,7 @@ easily specify multiple formats in one run. If you need to do both, you can explicitly specify multiple :command:`bdist_\*` commands and their options:: python setup.py bdist_rpm --packager="John Doe <jdoe@example.org>" \ - bdist_wininst --target_version="2.0" + bdist_wininst --target-version="2.0" Creating RPM packages is driven by a :file:`.spec` file, much as using the Distutils is driven by the setup script. To make your life easier, the |