From a54adcecff891374341adaad6a8187d416595b70 Mon Sep 17 00:00:00 2001 From: Shai Berger Date: Sat, 27 Sep 2014 09:57:09 +0300 Subject: [PATCH] Fixed git blunder, refs #22738 --- django/db/backends/mysql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index d2ba75f664..46d034ea85 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -224,7 +224,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): cursor.execute("SELECT 1 FROM mysql.time_zone LIMIT 1") return cursor.fetchone() is not None - def introspected_boolean_field_type(self, *args): + def introspected_boolean_field_type(self, *args, **kwargs): return 'IntegerField'