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 /Lib/distutils/command/bdist_wininst.py | |
parent | dee7b8503da8ef8aaa10df54e465911fe163c917 (diff) | |
download | cpython-56be37cef2c102190b88c015ca9820821f35792a.zip cpython-56be37cef2c102190b88c015ca9820821f35792a.tar.gz cpython-56be37cef2c102190b88c015ca9820821f35792a.tar.bz2 |
#7973: Fix distutils options spelling.
Diffstat (limited to 'Lib/distutils/command/bdist_wininst.py')
-rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index d6d01c6..3aa1dac 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -89,7 +89,7 @@ class bdist_wininst(Command): short_version = get_python_version() if self.target_version and self.target_version != short_version: raise DistutilsOptionError( - "target version can only be %s, or the '--skip_build'" \ + "target version can only be %s, or the '--skip-build'" \ " option must be specified" % (short_version,)) self.target_version = short_version |