From 377a212322a47c7117163010d7a1648131400afe Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Mon, 21 May 2012 01:31:26 -0500 Subject: [PATCH] improvements to map_name_cleaner --- extras/crystal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/crystal.py b/extras/crystal.py index 881e99669..1e836ac9a 100644 --- a/extras/crystal.py +++ b/extras/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):