summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2009-10-05 00:34:56 +0000
committerpjenvey <devnull@localhost>2009-10-05 00:34:56 +0000
commitd5233e49aa1f49d749af06ca0c230b67ba4e1847 (patch)
treefc005e25c1c601f8699a6dd7bdb2ec2ddced17a6
parenta298a639862197fa42205b72aaec680be6cccf20 (diff)
downloadpastedeploy-d5233e49aa1f49d749af06ca0c230b67ba4e1847.tar.gz
correct the error message's kwarg name
-rw-r--r--paste/deploy/loadwsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/deploy/loadwsgi.py b/paste/deploy/loadwsgi.py
index 86aa604..97c8dff 100644
--- a/paste/deploy/loadwsgi.py
+++ b/paste/deploy/loadwsgi.py
@@ -254,7 +254,7 @@ def _loadconfig(object_type, uri, path, name, relative_to,
if not isabs:
if not relative_to:
raise ValueError(
- "Cannot resolve relative uri %r; no context keyword "
+ "Cannot resolve relative uri %r; no relative_to keyword "
"argument given" % uri)
relative_to = relative_to.replace('\\', '/')
if relative_to.endswith('/'):