Fixed git blunder, refs #22738

This commit is contained in:
Shai Berger 2014-09-27 09:57:09 +03:00
parent c1ae0621ba
commit a54adcecff
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
cursor.execute("SELECT 1 FROM mysql.time_zone LIMIT 1") cursor.execute("SELECT 1 FROM mysql.time_zone LIMIT 1")
return cursor.fetchone() is not None return cursor.fetchone() is not None
def introspected_boolean_field_type(self, *args): def introspected_boolean_field_type(self, *args, **kwargs):
return 'IntegerField' return 'IntegerField'