summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-05-21 01:35:45 -0500
committerBryan Bishop <kanzure@gmail.com>2012-05-21 01:35:45 -0500
commit49c14800826e402e86d6558fefce4184878bcb8d (patch)
tree9b48f2767755d3a94561f544e3e5cc0b79646f91 /crystal.py
parent6d5c10b8ad186b65b1739910ce8e7e41e25f1622 (diff)
fix line continuation syntax error
original-commit-id: 7641b53a6a1e945aeade2958295bb0f5fd84fad5
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crystal.py b/crystal.py
index 4a14b1c..310a501 100644
--- a/crystal.py
+++ b/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):