From bb49a6bc393db2f2062bb2fa88a5373116b200bc Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 30 Aug 2011 17:49:20 +0300 Subject: [PATCH] Fix a Unicode docstring --- 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 56eade3..c600f7b 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -188,7 +188,7 @@ class Berry(TableBase): soil_dryness = Column(Integer, nullable=False, info=dict(description="The speed at which this Berry dries out the soil as it grows. A higher rate means the soil dries more quickly.")) smoothness = Column(Integer, nullable=False, - info=dict(description="The smoothness of this Berry, used in making Pokéblocks or Poffins")) + info=dict(description=u"The smoothness of this Berry, used in making Pokéblocks or Poffins")) class BerryFirmness(TableBase): u"""A Berry firmness, such as "hard" or "very soft".