mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-23 01:57:00 +03:00
Fixes typo (Implicit instead of Implict).
This commit is contained in:
parent
9177c74128
commit
b182b9e246
|
@ -501,7 +501,7 @@ class BaseSerializer(WritableField):
|
||||||
else:
|
else:
|
||||||
many = hasattr(data, '__iter__') and not isinstance(data, (Page, dict, six.text_type))
|
many = hasattr(data, '__iter__') and not isinstance(data, (Page, dict, six.text_type))
|
||||||
if many:
|
if many:
|
||||||
warnings.warn('Implict list/queryset serialization is deprecated. '
|
warnings.warn('Implicit list/queryset serialization is deprecated. '
|
||||||
'Use the `many=True` flag when instantiating the serializer.',
|
'Use the `many=True` flag when instantiating the serializer.',
|
||||||
DeprecationWarning, stacklevel=3)
|
DeprecationWarning, stacklevel=3)
|
||||||
|
|
||||||
|
@ -563,7 +563,7 @@ class BaseSerializer(WritableField):
|
||||||
else:
|
else:
|
||||||
many = hasattr(obj, '__iter__') and not isinstance(obj, (Page, dict))
|
many = hasattr(obj, '__iter__') and not isinstance(obj, (Page, dict))
|
||||||
if many:
|
if many:
|
||||||
warnings.warn('Implict list/queryset serialization is deprecated. '
|
warnings.warn('Implicit list/queryset serialization is deprecated. '
|
||||||
'Use the `many=True` flag when instantiating the serializer.',
|
'Use the `many=True` flag when instantiating the serializer.',
|
||||||
DeprecationWarning, stacklevel=2)
|
DeprecationWarning, stacklevel=2)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user