summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2012-11-02 14:21:09 -0700
committerRyan Petrello <lists@ryanpetrello.com>2012-11-02 14:21:09 -0700
commit9f76bf1285759232051f2f4f5ee50fc252d3fb20 (patch)
treeb40d63d7c1cd12752da39ccb7279a26fb12aec53
parent14cd896db20da037ce0305489bc1eec57de1bee6 (diff)
parentd8e53a2c8318d97952e6b13a19d2f5c44cbbb55a (diff)
downloadpecan-9f76bf1285759232051f2f4f5ee50fc252d3fb20.tar.gz
Merge pull request #145 from ryanpetrello/next
Fix another broken test.
-rw-r--r--pecan/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pecan/core.py b/pecan/core.py
index 9e3cbd0..1ff1663 100644
--- a/pecan/core.py
+++ b/pecan/core.py
@@ -235,7 +235,7 @@ class Pecan(object):
"You have POSTed to a URL '%s' which "
"requires a slash. Most browsers will not maintain "
"POST data when redirected. Please update your code "
- "to POST to '%s/' or set force_canonical to False"
+ "to POST to '%s/' or set force_canonical to False" %
(request.pecan['routing_path'],
request.pecan['routing_path'])
)