summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-05-21 01:31:26 -0500
committerBryan Bishop <kanzure@gmail.com>2012-05-21 01:31:26 -0500
commit6afd0dd3f210011002fb6d297c3588a29bf62cdd (patch)
treede34f1a5012435a4ab0bf3325053387eeaa2e568 /crystal.py
parent5dca99fe607b420e542dc1add9bc919d3e6c2b2f (diff)
improvements to map_name_cleaner
original-commit-id: 377a212322a47c7117163010d7a1648131400afe
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/crystal.py b/crystal.py
index 881e996..1e836ac 100644
--- a/crystal.py
+++ b/crystal.py
@@ -224,6 +224,8 @@ def map_name_cleaner(input):
replace(",", "").\
replace(".", "").\
replace("Pokémon Center", "PokeCenter").\
+ replace("é", "e").\
+ replace("-", "")
replace(" ", "")
class RomStr(str):