Fix form_order's description in tables.py.

This commit is contained in:
Lynn "Zhorken" Vaughan 2012-06-07 02:05:10 -04:00
parent cc3d0b60d3
commit 4aa637caf2

View file

@ -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.'))