Kaydet (Commit) 413f3bb5 authored tarafından Ville Skyttä's avatar Ville Skyttä Kaydeden (comit) Tim Graham

Replaced `six.callable` with `callable`.

üst 80bf3135
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment