From: Jason Kirtland Date: Sat, 4 Aug 2007 21:53:41 +0000 (+0000) Subject: Pedantic tweak to coltype swappage... X-Git-Tag: rel_0_4beta1~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8613586f0d643f692644c52655384041c677d4d6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Pedantic tweak to coltype swappage... --- diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py index 88a8957cd9..77e06036dd 100644 --- a/lib/sqlalchemy/databases/mysql.py +++ b/lib/sqlalchemy/databases/mysql.py @@ -1363,6 +1363,7 @@ class MySQLDialect(ansisql.ANSIDialect): if col_type == 'tinyint' and args == '(1)': col_type = 'boolean' + args = None try: coltype = ischema_names[col_type] except KeyError: