diff options
Diffstat (limited to 'django')
| -rw-r--r-- | django/test/client.py | 2 |
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) |
