diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:31:26 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:31:26 -0500 |
commit | 6afd0dd3f210011002fb6d297c3588a29bf62cdd (patch) | |
tree | de34f1a5012435a4ab0bf3325053387eeaa2e568 /crystal.py | |
parent | 5dca99fe607b420e542dc1add9bc919d3e6c2b2f (diff) |
improvements to map_name_cleaner
original-commit-id: 377a212322a47c7117163010d7a1648131400afe
Diffstat (limited to 'crystal.py')
-rw-r--r-- | crystal.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -224,6 +224,8 @@ def map_name_cleaner(input): replace(",", "").\ replace(".", "").\ replace("Pokémon Center", "PokeCenter").\ + replace("é", "e").\ + replace("-", "") replace(" ", "") class RomStr(str): |