mirror of https://github.com/django/django.git
Replaced `six.callable` with `callable`.
This commit is contained in:
parent
80bf3135d0
commit
413f3bb5c8
|
@ -204,7 +204,7 @@ class BaseDatabaseSchemaEditor(object):
|
|||
else:
|
||||
default = None
|
||||
# If it's a callable, call it
|
||||
if six.callable(default):
|
||||
if callable(default):
|
||||
default = default()
|
||||
# Run it through the field's get_db_prep_save method so we can send it
|
||||
# to the database.
|
||||
|
|
Loading…
Reference in New Issue