fix warning on creating new deck

This commit is contained in:
Damien Elmes 2009-01-21 15:58:59 +09:00
parent 913fe96c07
commit f1397fcd86

View file

@ -105,7 +105,7 @@ cardModelsTable = Table(
Column('editAnswerFontSize', Integer, default=None),
# empty answer
Column('allowEmptyAnswer', Boolean, nullable=False, default=True),
Column('typeAnswer', UnicodeText, nullable=False, default=""))
Column('typeAnswer', UnicodeText, nullable=False, default=u""))
class CardModel(object):
"""Represents how to generate the front and back of a card."""