mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-26 03:23:59 +03:00
Owned by import *
This commit is contained in:
parent
857185cf07
commit
15f797fd3e
|
@ -12,7 +12,7 @@ response content is handled by parsers and renderers.
|
|||
"""
|
||||
from __future__ import unicode_literals
|
||||
from django.db import models
|
||||
from django.db.models.fields import FieldDoesNotExist, Field
|
||||
from django.db.models.fields import FieldDoesNotExist, Field as DjangoField
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from rest_framework.compat import unicode_to_repr
|
||||
from rest_framework.utils import model_meta
|
||||
|
@ -939,7 +939,7 @@ class ModelSerializer(Serializer):
|
|||
except FieldDoesNotExist:
|
||||
continue
|
||||
|
||||
if not isinstance(model_field, Field):
|
||||
if not isinstance(model_field, DjangoField):
|
||||
continue
|
||||
|
||||
# Include each of the `unique_for_*` field names.
|
||||
|
|
Loading…
Reference in New Issue
Block a user