summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-11-28 01:58:46 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-13 17:30:51 -0800
commit894534b26edcd1701dcf2c5f93377bf0d86dc51a (patch)
tree5bc887a84f843957c089f0014b82a73e8c105a3b
parent506d3c7fd5cd6cf3bd0c46f06f85c9cdf6795d18 (diff)
downloadpyramid-894534b26edcd1701dcf2c5f93377bf0d86dc51a.tar.gz
pyramid-894534b26edcd1701dcf2c5f93377bf0d86dc51a.tar.bz2
pyramid-894534b26edcd1701dcf2c5f93377bf0d86dc51a.zip
fix quote mismatch
-rw-r--r--pyramid/scripts/prequest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/scripts/prequest.py b/pyramid/scripts/prequest.py
index 021b83f6c..9e807896d 100644
--- a/pyramid/scripts/prequest.py
+++ b/pyramid/scripts/prequest.py
@@ -39,7 +39,7 @@ class PRequestCommand(object):
If the path is relative (doesn't begin with "/") it is interpreted as
relative to "/". The path passed to this script should be URL-quoted.
- The path can be succeeded with a query string (e.g. `/path?a=1&=b2').
+ The path can be succeeded with a query string (e.g. '/path?a=1&=b2').
The variable "environ['paste.command_request']" will be set to "True" in
the request's WSGI environment, so your application can distinguish these