diff options
author | Dustin Ingram <di@users.noreply.github.com> | 2019-03-16 10:06:53 -0700 |
---|---|---|
committer | Paul Ganssle <pganssle@users.noreply.github.com> | 2019-03-16 13:06:53 -0400 |
commit | c27c705f6a326e4820f1a34d6ce1db101dad3a30 (patch) | |
tree | c68d34da2f30f41468e2a010da7fb140b5bdd804 /setuptools/dist.py | |
parent | 16e452a42a3dbbb0ab3d3146ffa3b743cdca2539 (diff) | |
download | python-setuptools-git-c27c705f6a326e4820f1a34d6ce1db101dad3a30.tar.gz |
Fix typo in docstring (#1718)
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index 6233d5dc..e6d08b92 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -885,7 +885,7 @@ class Distribution(_Distribution): def include(self, **attrs): """Add items to distribution that are named in keyword arguments - For example, 'dist.exclude(py_modules=["x"])' would add 'x' to + For example, 'dist.include(py_modules=["x"])' would add 'x' to the distribution's 'py_modules' attribute, if it was not already there. |