summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-01-25 06:36:34 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2019-01-25 08:43:21 -0800
commitac956dae1d06ce2ebff7a2966bcaf8a5ecdbb861 (patch)
tree6962716ca5afa185bdb2104cd2813e5926eca404 /django
parent7e978fdc4228eb44cf97cb4243adc7b7bfd586c7 (diff)
Fixed grammar in FakePayload exception message.
Diffstat (limited to 'django')
-rw-r--r--django/test/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/client.py b/django/test/client.py
index 07641b7e65..afc803789e 100644
--- a/django/test/client.py
+++ b/django/test/client.py
@@ -76,7 +76,7 @@ class FakePayload:
def write(self, content):
if self.read_started:
- raise ValueError("Unable to write a payload after he's been read")
+ raise ValueError("Unable to write a payload after it's been read")
content = force_bytes(content)
self.__content.write(content)
self.__len += len(content)