send a NASA probe to the buildbot

This commit is contained in:
Mike Bayer
2009-01-03 17:28:43 +00:00
parent 4dec075ee5
commit ba2bd53ec9
+4 -1
View File
@@ -490,7 +490,10 @@ class SQLiteDialect(default.DefaultDialect):
colargs = []
if has_default:
colargs.append(DefaultClause(sql.text(default)))
try:
colargs.append(DefaultClause(sql.text(default)))
except:
colargs.append(DefaultClause(sql.text("what the heck is this: %r" % default)))
table.append_column(schema.Column(name, coltype, primary_key = primary_key, nullable = nullable, *colargs))
if not found_table: