Fixed #28854 -- Replaced type(True) with bool in sqlite's SchemaEditor.

This commit is contained in:
Дилян Палаузов 2017-11-28 10:41:36 -05:00 committed by Tim Graham
parent 4f5526e346
commit 3308085838
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
except sqlite3.ProgrammingError: except sqlite3.ProgrammingError:
pass pass
# Manual emulation of SQLite parameter quoting # Manual emulation of SQLite parameter quoting
if isinstance(value, type(True)): if isinstance(value, bool):
return str(int(value)) return str(int(value))
elif isinstance(value, (Decimal, float, int)): elif isinstance(value, (Decimal, float, int)):
return str(value) return str(value)