summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpjenvey <pjenvey@localhost>2009-10-05 00:34:56 +0000
committerpjenvey <pjenvey@localhost>2009-10-05 00:34:56 +0000
commit1587cb01d550796899409e44a6c909a05a6d7fc5 (patch)
treefc005e25c1c601f8699a6dd7bdb2ec2ddced17a6
parent5dbb3e2363837383296b6a7404543e6da2932e42 (diff)
downloadpastedeploy-git-1587cb01d550796899409e44a6c909a05a6d7fc5.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('/'):