summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-12-21 02:08:00 -0500
committerChris McDonough <chrism@plope.com>2011-12-21 02:08:00 -0500
commit790fa66970764fb84dfb2fbbc0a71a5610406181 (patch)
tree76b2d8ac49aea6774d01f051cec1f93f140ea4e6 /docs
parentba2a3f87fa51843a8a160f209fb576ae21d0050b (diff)
parent61d45f9f3d02f0bdf615a2c266e7f4060c833a3e (diff)
downloadpyramid-790fa66970764fb84dfb2fbbc0a71a5610406181.tar.gz
pyramid-790fa66970764fb84dfb2fbbc0a71a5610406181.tar.bz2
pyramid-790fa66970764fb84dfb2fbbc0a71a5610406181.zip
merge master to 1.3 branch
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/commandline.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst
index dc3cff8ac..b42a7ae9e 100644
--- a/docs/narr/commandline.rst
+++ b/docs/narr/commandline.rst
@@ -793,10 +793,10 @@ top-level directory your ``setup.py`` file will look something like this:
zip_safe=False,
install_requires=requires,
tests_require=requires,
- test_suite="wiggystatic",
+ test_suite="myproject",
entry_points = """\
[paste.app_factory]
- main = wiggystatic:main
+ main = myproject:main
""",
)
@@ -848,10 +848,10 @@ The result will be something like:
zip_safe=False,
install_requires=requires,
tests_require=requires,
- test_suite="wiggystatic",
+ test_suite="myproject",
entry_points = """\
[paste.app_factory]
- main = wiggystatic:main
+ main = myproject:main
[console_scripts]
show_settings = myproject.scripts:settings_show
""",