From 105d9422ca8151aff88465d8ba62e64116cbe32d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Sun, 3 Apr 2011 19:34:18 +0300 Subject: [PATCH] Change item short effect format to markdown --- pokedex/db/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index d9905b6..727582c 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -501,7 +501,7 @@ create_translation_table('item_names', Item, 'names', ) create_translation_table('item_prose', Item, 'prose', short_effect = Column(markdown.MarkdownColumn(256), nullable=False, - info=dict(description="A short summary of the effect", format='plaintext')), + info=dict(description="A short summary of the effect", format='markdown')), effect = Column(markdown.MarkdownColumn(5120), nullable=False, info=dict(description=u"Detailed description of the item's effect.", format='markdown')), )