summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testtools/content.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testtools/content.py b/testtools/content.py
index d4342d6..5538988 100644
--- a/testtools/content.py
+++ b/testtools/content.py
@@ -102,7 +102,7 @@ class Content(object):
no charset parameter is present in the MIME type. (This is somewhat
arbitrary, but consistent with RFC2617 3.7.1).
- :raises ValueError: If the content type is not text *.
+ :raises ValueError: If the content type is not "text/*".
"""
if self.content_type.type != "text":
raise ValueError("Not a text type %r" % self.content_type)