From 5f54b3057d5f80af20178a43aec847e9d25e9ca3 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Sun, 6 Jul 2014 11:53:09 -0700 Subject: [PATCH] Fix PokemonForm.form_order docstring --- pokedex/db/tables.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 82f40bc..8c5973b 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -1787,8 +1787,12 @@ class PokemonForm(TableBase): is_mega = Column(Boolean, nullable=False, doc=u'Records whether this form is a Mega Evolution.') form_order = Column(Integer, nullable=False, autoincrement=False, - info=dict(description=u"The order in which forms should be sorted within a species' forms. Multiple forms may have equal order, in which case they should fall back on sorting by name. " - u"Used in generating `pokemon_forms.order` and `pokemon.order`.")) + doc=u"""The order in which forms should be sorted within a species' forms. + + Multiple forms may have equal order, in which case they should fall + back on sorting by name. Used in generating `pokemon_forms.order` + and `pokemon.order`. + """) order = Column(Integer, nullable=False, autoincrement=False, doc=u'The order in which forms should be sorted within all forms. Multiple forms may have equal order, in which case they should fall back on sorting by name.')