diff options
author | Dustin Ingram <di@users.noreply.github.com> | 2019-03-13 11:54:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 11:54:46 -0700 |
commit | 42002a7efeb2c267ded78b3b3569dc019748c6bc (patch) | |
tree | c68d34da2f30f41468e2a010da7fb140b5bdd804 /setuptools/dist.py | |
parent | 16e452a42a3dbbb0ab3d3146ffa3b743cdca2539 (diff) | |
download | python-setuptools-git-di-patch-1.tar.gz |
Fix typo in docstringdi-patch-1
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. |