diff options
| author | Chris McDonough <chrism@plope.com> | 2011-12-15 22:00:01 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-12-15 22:00:01 -0500 |
| commit | 04cd4bea0457d7beeab2d2b3a1873f1e619650e8 (patch) | |
| tree | f9b0e3baa92851aebae6abf35b5ea29ba183d63a /docs | |
| parent | 63f7a19b58738b8fe5fbe82f362825fa53ddc0d2 (diff) | |
| download | pyramid-04cd4bea0457d7beeab2d2b3a1873f1e619650e8.tar.gz pyramid-04cd4bea0457d7beeab2d2b3a1873f1e619650e8.tar.bz2 pyramid-04cd4bea0457d7beeab2d2b3a1873f1e619650e8.zip | |
undo cutnpaste mistakes
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/commandline.rst | 8 |
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 """, |
