summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-08-17 08:35:08 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-08-17 08:35:08 -0400
commit4ecf0567147a3b594d11432ee84a634ee754c9c2 (patch)
tree3e15144fb6763cae4be0b3256d8e778849029102 /docs
parent39701a17ac101152cd27e51f1568e2993f6e6ae9 (diff)
parent5555fb9a989113008b937bf6835c1912dd495c3d (diff)
downloadpython-setuptools-bitbucket-4ecf0567147a3b594d11432ee84a634ee754c9c2.tar.gz
For the sake of expedience, I'm going to accept this and tweak it further. In the future, it's better to have a ticket and reference that ticket in the pull request and commits for better visibility to the changes and issues that it creates. I also suggest providing better commit messages. "Fix docs to work" is barely better than "changed things". The commit message should attempt to communicate the why and the how of the change at a high level. Something like "Added path in sphinx docs to allow setup.py to be imported when docs are built from docs directory."
Diffstat (limited to 'docs')
-rw-r--r--docs/setuptools.txt2
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',
]
}
)