From 4aa637caf2bc457f9e997ee20568a81399e0e768 Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Thu, 7 Jun 2012 02:05:10 -0400 Subject: [PATCH] Fix form_order's description in tables.py. --- 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 575b499..2da7a91 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -1236,7 +1236,7 @@ class PokemonForm(TableBase): info=dict(description=u'Set iff the form can only appear in battle.')) 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"order` and `pokemon.order` are generated from this.")) + u"Used in generating `pokemon_forms.order` and `pokemon.order`.")) order = Column(Integer, nullable=False, autoincrement=False, info=dict(description=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.'))