summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShai Berger <shai@platonix.com>2014-09-27 09:57:09 +0300
committerShai Berger <shai@platonix.com>2014-09-27 09:57:09 +0300
commita54adcecff891374341adaad6a8187d416595b70 (patch)
tree3b8cd61146dd5735845c345648747711364c14c0
parentc1ae0621bab6b013025ec9024691ce7ad556409e (diff)
Fixed git blunder, refs #22738
-rw-r--r--django/db/backends/mysql/base.py2
1 files changed, 1 insertions, 1 deletions
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'