diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-07-18 16:38:48 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-07-18 16:38:48 (GMT) |
commit | 3ef6ca488290a659cffd79f874068396aab6972a (patch) | |
tree | 50e4fe8393c01b562751197c8c358a1aaf25fb62 /Doc/distutils | |
parent | bd9c655c973c8933ed479d70b5919677be9440d2 (diff) | |
parent | b899007268c53f2f169562bd0679fd5d688e185c (diff) | |
download | cpython-3ef6ca488290a659cffd79f874068396aab6972a.zip cpython-3ef6ca488290a659cffd79f874068396aab6972a.tar.gz cpython-3ef6ca488290a659cffd79f874068396aab6972a.tar.bz2 |
Merge English fix.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/setupscript.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 9208e36..606ea0f 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -72,7 +72,7 @@ Thus, when you say ``packages = ['foo']`` in your setup script, you are promising that the Distutils will find a file :file:`foo/__init__.py` (which might be spelled differently on your system, but you get the idea) relative to the directory where your setup script lives. If you break this promise, the -Distutils will issue a warning but still process the broken package anyways. +Distutils will issue a warning but still process the broken package anyway. If you use a different convention to lay out your source directory, that's no problem: you just have to supply the :option:`package_dir` option to tell the |