From 49c14800826e402e86d6558fefce4184878bcb8d Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Mon, 21 May 2012 01:35:45 -0500 Subject: fix line continuation syntax error original-commit-id: 7641b53a6a1e945aeade2958295bb0f5fd84fad5 --- crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.3