Skip to content

Commit

Permalink
Fix form_order's description in tables.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
CatTrinket committed Jun 7, 2012
1 parent cc3d0b6 commit 4aa637c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokedex/db/tables.py
Expand Up @@ -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.'))

Expand Down

0 comments on commit 4aa637c

Please sign in to comment.