summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-12-21 07:40:57 -0800
committerMichael Merickel <michael@merickel.org>2011-12-21 07:40:57 -0800
commitb6c0fa00fbbbc3a9ceff495fa6442a267b4e45ed (patch)
treeb1e732a8692ee9531a4c512e36bce0969768c6ba
parent61d45f9f3d02f0bdf615a2c266e7f4060c833a3e (diff)
parentc469f2f89685dfcfe5d34a412979c807e3c35c88 (diff)
downloadpyramid-b6c0fa00fbbbc3a9ceff495fa6442a267b4e45ed.tar.gz
pyramid-b6c0fa00fbbbc3a9ceff495fa6442a267b4e45ed.tar.bz2
pyramid-b6c0fa00fbbbc3a9ceff495fa6442a267b4e45ed.zip
Merge pull request #380 from stevepiercy/patch-10
Split long run-on sentence into two.
-rw-r--r--docs/narr/commandline.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst
index b42a7ae9e..a1fcf12f5 100644
--- a/docs/narr/commandline.rst
+++ b/docs/narr/commandline.rst
@@ -670,9 +670,9 @@ script is installed. Because it's installed into the ``bin`` directory of a
virtualenv when the distribution is installed, it's a convenient way to
package and distribute functionality that you can call from the command-line.
It's often more convenient to create a console script than it is to create a
-``.py`` script and instruct people to call it with "the right Python
-interpreter": because it generates a file that lives in ``bin``, when it's
-invoked, it will always use "the right" Python environment, which means it
+``.py`` script and instruct people to call it with the "right" Python
+interpreter. A console script generates a file that lives in ``bin``, and when it's
+invoked it will always use the "right" Python environment, which means it
will always be invoked in an environment where all the libraries it needs
(such as Pyramid) are available.