summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-10-18 13:50:43 -0500
committerMichael Merickel <michael@merickel.org>2015-10-18 13:51:11 -0500
commit65f9452d1a1be412ab118e6fc081dac555849cd2 (patch)
tree8a63477e9550945815e49d9d9e971906ecbcc754 /docs
parentd526a548a82247111cd5d862d0129298f693f00b (diff)
downloadpyramid-65f9452d1a1be412ab118e6fc081dac555849cd2.tar.gz
pyramid-65f9452d1a1be412ab118e6fc081dac555849cd2.tar.bz2
pyramid-65f9452d1a1be412ab118e6fc081dac555849cd2.zip
Fix entrypoints syntax in pshell as part of #1891.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/commandline.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst
index cb0c914d7..641fe43cf 100644
--- a/docs/narr/commandline.rst
+++ b/docs/narr/commandline.rst
@@ -298,7 +298,7 @@ a new shell by registering an entrypoint in your setup.py:
setup(
entry_points = """\
[pyramid.pshell]
- myshell=my_app.ptpython_shell_factory
+ myshell=my_app:ptpython_shell_factory
"""
)