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