Commit 413f3bb5 authored by Ville Skyttä's avatar Ville Skyttä Committed by Tim Graham
Browse files

Replaced `six.callable` with `callable`.

parent 80bf3135
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.