From cbf475eb269b919cc010501be8dd01dfd15f2072 Mon Sep 17 00:00:00 2001 From: "beville@gmail.com" Date: Sun, 18 Aug 2013 18:00:04 +0000 Subject: [PATCH] removed filtering out of period (".") git-svn-id: http://comictagger.googlecode.com/svn/trunk@644 6c5673fe-1810-88d6-992b-cd32ca31540c --- comictaggerlib/utils.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/comictaggerlib/utils.py b/comictaggerlib/utils.py index 75d960a..3407638 100644 --- a/comictaggerlib/utils.py +++ b/comictaggerlib/utils.py @@ -126,9 +126,13 @@ def removearticles( text ): # now get rid of some other junk newText = newText.replace(":", "") - newText = newText.replace(".", "") newText = newText.replace(",", "") newText = newText.replace("-", " ") + + # since the CV api changed, searches for series names with periods + # now explicity require the period to be in the search key, + # so the line below is removed (for now) + #newText = newText.replace(".", "") return newText