diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:38:11 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:38:11 -0500 |
commit | e517b30a14e39f60b0f98c2c7184771245aa2465 (patch) | |
tree | 70271d44dadc0b32056503207ae89c1bf22dffea | |
parent | 7641b53a6a1e945aeade2958295bb0f5fd84fad5 (diff) |
at least try to keep HoOh in tact in label names
-rw-r--r-- | extras/crystal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 310a50172..6502fa24f 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -226,6 +226,8 @@ def map_name_cleaner(input): replace("Pokémon Center", "PokeCenter").\ replace("é", "e").\ replace("-", "").\ + replace("Hooh", "HoOh").\ + replace("hooh", "HoOh").\ replace(" ", "") class RomStr(str): |