Browse Source

Fixed weird cache keyerror problem.

pull/5982/head
ofir123 9 years ago
committed by Ofir123
parent
commit
c6c792a15c
  1. 3
      libs/subliminal/services/subscenter.py

3
libs/subliminal/services/subscenter.py

@ -16,7 +16,6 @@
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with subliminal. If not, see <http://www.gnu.org/licenses/>. # along with subliminal. If not, see <http://www.gnu.org/licenses/>.
from . import ServiceBase from . import ServiceBase
from ..cache import cachedmethod
from ..exceptions import ServiceError from ..exceptions import ServiceError
from ..language import language_set from ..language import language_set
from ..subtitles import get_subtitle_path, ResultSubtitle from ..subtitles import get_subtitle_path, ResultSubtitle
@ -37,7 +36,6 @@ class Subscenter(ServiceBase):
videos = [Episode, Movie] videos = [Episode, Movie]
require_video = False require_video = False
@cachedmethod
def _search_url_title(self, title, kind): def _search_url_title(self, title, kind):
"""Search the URL title for the given `title`. """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``. :param str kind: kind of the title, ``movie`` or ``series``.
:return: the URL version of the title. :return: the URL version of the title.
:rtype: str or None :rtype: str or None
""" """
# make the search # make the search
logger.info('Searching title name for %r', title) logger.info('Searching title name for %r', title)

Loading…
Cancel
Save