1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[1.2.X] Fixed #14819 -- Corrected typo in serializer docstring. Thanks to stringify for the report and patch.

Backport of r14789 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14792 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-12-04 04:34:04 +00:00
parent 84e5277a25
commit c7d68418d2

View File

@ -36,7 +36,7 @@ except ImportError:
_serializers = {}
def register_serializer(format, serializer_module, serializers=None):
""""Register a new serializer.
"""Register a new serializer.
``serializer_module`` should be the fully qualified module name
for the serializer.