summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Garfield <andyjgarfield@gmail.com>2021-07-28 15:46:36 -0400
committerGitHub <noreply@github.com>2021-07-28 15:46:36 -0400
commit1ffbc6cfdacd4c052bf39ce70a8e31a7b261a439 (patch)
treebd3b6d12791f8cb4440f50594cf9b1d1eeadae89
parentcf4ccaa0fcd0d73b690855abb379d96d9555d0d5 (diff)
downloadwebtest-1ffbc6cfdacd4c052bf39ce70a8e31a7b261a439.tar.gz
Typo fix
-rw-r--r--webtest/lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webtest/lint.py b/webtest/lint.py
index e0e6870..c5a7caa 100644
--- a/webtest/lint.py
+++ b/webtest/lint.py
@@ -529,7 +529,7 @@ def check_content_type(status, headers):
return
elif not length:
warnings.warn(("Content-Type header found in a %s response, "
- "which not return content.") % code,
+ "which should not return content.") % code,
WSGIWarning)
return
else: