From f2b2a35699332108ef6f91abe296b35e0a9579bc Mon Sep 17 00:00:00 2001 From: Offby-One Kenobi Date: Mon, 2 May 2016 15:43:03 +0000 Subject: [PATCH] Fixed docstring typos. --- django/core/serializers/base.py | 2 +- tests/model_forms/tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django/core/serializers/base.py b/django/core/serializers/base.py index 165c7fa7ff..7cf66b15f7 100644 --- a/django/core/serializers/base.py +++ b/django/core/serializers/base.py @@ -22,7 +22,7 @@ class DeserializationError(Exception): def WithData(cls, original_exc, model, fk, field_value): """ Factory method for creating a deserialization error which has a more - explanatory messsage. + explanatory message. """ return cls("%s: (%s:pk=%s) field_value was '%s'" % (original_exc, model, fk, field_value)) diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 56a5bad781..193b5e1fda 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -2291,7 +2291,7 @@ class ModelOtherFieldTests(SimpleTestCase): def test_modelform_non_editable_field(self): """ - When explicitely including a non-editable field in a ModelForm, the + When explicitly including a non-editable field in a ModelForm, the error message should be explicit. """ # 'created', non-editable, is excluded by default