From c6c792a15ce289534dfbe1b174fb4295d2a18fb6 Mon Sep 17 00:00:00 2001 From: ofir123 Date: Sat, 16 Jan 2016 12:41:08 +0200 Subject: [PATCH] Fixed weird cache keyerror problem. --- libs/subliminal/services/subscenter.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/libs/subliminal/services/subscenter.py b/libs/subliminal/services/subscenter.py index 229d19a..2fd6baf 100644 --- a/libs/subliminal/services/subscenter.py +++ b/libs/subliminal/services/subscenter.py @@ -16,7 +16,6 @@ # You should have received a copy of the GNU Lesser General Public License # along with subliminal. If not, see . from . import ServiceBase -from ..cache import cachedmethod from ..exceptions import ServiceError from ..language import language_set from ..subtitles import get_subtitle_path, ResultSubtitle @@ -37,7 +36,6 @@ class Subscenter(ServiceBase): videos = [Episode, Movie] require_video = False - @cachedmethod def _search_url_title(self, title, kind): """Search the URL title for the given `title`. @@ -45,7 +43,6 @@ class Subscenter(ServiceBase): :param str kind: kind of the title, ``movie`` or ``series``. :return: the URL version of the title. :rtype: str or None - """ # make the search logger.info('Searching title name for %r', title)