diff options
| author | Offby-One Kenobi <gunbei@10xengineers.org> | 2016-05-02 15:43:03 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-02 11:43:03 -0400 |
| commit | f2b2a35699332108ef6f91abe296b35e0a9579bc (patch) | |
| tree | 93730c43a8228741bd4097a72719fa4d32878cf9 /django | |
| parent | 32969c3931dea8488ee4ad2849eab43e31e5542e (diff) | |
Fixed docstring typos.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/serializers/base.py | 2 |
1 files changed, 1 insertions, 1 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)) |
