summaryrefslogtreecommitdiff
path: root/paste/lint.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-09-05 15:01:55 +0000
committerianb <devnull@localhost>2006-09-05 15:01:55 +0000
commit828bfff4cdb051a35e47b256af0ac5a18ad8ddc8 (patch)
treee19289d577fee46e3cbd870e788517e381f421a1 /paste/lint.py
parente7f8995a01e127e593aa0f08a29f4a0f1ac45d11 (diff)
downloadpaste-828bfff4cdb051a35e47b256af0ac5a18ad8ddc8.tar.gz
Some docstring fixes, and a link fix; exception fix in paste.lint0.9.8.1
Diffstat (limited to 'paste/lint.py')
-rw-r--r--paste/lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/lint.py b/paste/lint.py
index 6b3aefb..908befb 100644
--- a/paste/lint.py
+++ b/paste/lint.py
@@ -311,7 +311,7 @@ def check_environ(environ):
continue
assert type(environ[key]) is StringType, (
"Environmental variable %s is not a string: %r (value: %r)"
- % (type(environ[key]), environ[key]))
+ % (key, type(environ[key]), environ[key]))
assert type(environ['wsgi.version']) is TupleType, (
"wsgi.version should be a tuple (%r)" % environ['wsgi.version'])