From 7641b53a6a1e945aeade2958295bb0f5fd84fad5 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Mon, 21 May 2012 01:35:45 -0500 Subject: [PATCH] fix line continuation syntax error --- extras/crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):