From ac956dae1d06ce2ebff7a2966bcaf8a5ecdbb861 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Fri, 25 Jan 2019 06:36:34 -0800 Subject: Fixed grammar in FakePayload exception message. --- django/test/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django') 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) -- cgit v1.3