diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-04 10:41:58 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-04 10:41:58 -0400 |
commit | 1194bad8b3d424469364ef497c3202dfb4ebcf62 (patch) | |
tree | 8119e60219e9b18d091eb2efdabd008052b2187e | |
parent | 0341e4d0b24162ec6a4280c99bafdf8b7bcab324 (diff) | |
download | external_python_setuptools-1194bad8b3d424469364ef497c3202dfb4ebcf62.tar.gz external_python_setuptools-1194bad8b3d424469364ef497c3202dfb4ebcf62.tar.bz2 external_python_setuptools-1194bad8b3d424469364ef497c3202dfb4ebcf62.zip |
Correct syntax in gui_scripts. Fixes #238.
-rw-r--r-- | docs/setuptools.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt index 86e23ff9..c3844cf2 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -479,7 +479,7 @@ script called ``baz``, you might do something like this:: 'bar = other_module:some_func', ], 'gui_scripts': [ - 'baz = my_package_gui.start_func', + 'baz = my_package_gui:start_func', ] } ) |