diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:35:45 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-21 01:35:45 -0500 |
commit | 7641b53a6a1e945aeade2958295bb0f5fd84fad5 (patch) | |
tree | 8f767f7dce22f9adb5e6deb27776cf59654a7fc8 | |
parent | 9ea35422f8e54811a6ad51c06bb4300c146bc832 (diff) |
fix line continuation syntax error
-rw-r--r-- | extras/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 4a14b1cb9..310a50172 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -225,7 +225,7 @@ def map_name_cleaner(input): replace(".", "").\ replace("Pokémon Center", "PokeCenter").\ replace("é", "e").\ - replace("-", "") + replace("-", "").\ replace(" ", "") class RomStr(str): |