summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2011-12-21 00:42:58 -0800
committerSteve Piercy <web@stevepiercy.com>2011-12-21 00:42:58 -0800
commitc469f2f89685dfcfe5d34a412979c807e3c35c88 (patch)
treeb1e732a8692ee9531a4c512e36bce0969768c6ba /docs
parent61d45f9f3d02f0bdf615a2c266e7f4060c833a3e (diff)
downloadpyramid-c469f2f89685dfcfe5d34a412979c807e3c35c88.tar.gz
pyramid-c469f2f89685dfcfe5d34a412979c807e3c35c88.tar.bz2
pyramid-c469f2f89685dfcfe5d34a412979c807e3c35c88.zip
Split long run-on sentence into two.
Attempt to make it more understandable, not sure of technical correctness.
Diffstat (limited to 'docs')
-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.