summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2021-07-28 13:21:34 -0700
committerGitHub <noreply@github.com>2021-07-28 13:21:34 -0700
commitce72663ca0fe1ea647c7b03dec0476083b03a3e9 (patch)
treebd3b6d12791f8cb4440f50594cf9b1d1eeadae89
parentcf4ccaa0fcd0d73b690855abb379d96d9555d0d5 (diff)
parent1ffbc6cfdacd4c052bf39ce70a8e31a7b261a439 (diff)
downloadwebtest-ce72663ca0fe1ea647c7b03dec0476083b03a3e9.tar.gz
Merge pull request #235 from andygarfield/patch-1
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: