summaryrefslogtreecommitdiff
path: root/repoze/bfg/scripting.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-09 00:34:50 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-09 00:34:50 +0000
commit8b1f6e5ed3f9fc32b5eb03257d24eaf754a797a9 (patch)
treeb0525c11e88c5adf6c233c09d7e9318429d54265 /repoze/bfg/scripting.py
parentf46de3bb0a9d2c9823aa3221fd28d80aed65b719 (diff)
downloadpyramid-8b1f6e5ed3f9fc32b5eb03257d24eaf754a797a9.tar.gz
pyramid-8b1f6e5ed3f9fc32b5eb03257d24eaf754a797a9.tar.bz2
pyramid-8b1f6e5ed3f9fc32b5eb03257d24eaf754a797a9.zip
- General documentation freshening which takes imperative
configuration into account in more places and uses glossary references more liberally.
Diffstat (limited to 'repoze/bfg/scripting.py')
-rw-r--r--repoze/bfg/scripting.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/repoze/bfg/scripting.py b/repoze/bfg/scripting.py
index bf2423a8c..3e743524a 100644
--- a/repoze/bfg/scripting.py
+++ b/repoze/bfg/scripting.py
@@ -7,8 +7,9 @@ def get_root(app, request=None):
``closer`` returned is a callable (accepting no arguments) that
should be called when your scripting application is finished using
the root. If ``request`` is not None, it is used as the request
- passed to the BFG application root factory. A faux request is
- constructed and passed to the root factory if ``request`` is None."""
+ passed to the :mod:`repoze.bfg` application root factory. A
+ request is constructed and passed to the root factory if
+ ``request`` is None."""
registry = app.registry
if request is None:
request = Request.blank('/')