Browse Source

Return imdbid with 'tt'

pull/66/head
Ruud 14 years ago
parent
commit
f337b2ed95
  1. 2
      couchpotato/core/helpers/variable.py
  2. 4
      couchpotato/core/plugins/base.py

2
couchpotato/core/helpers/variable.py

@ -67,7 +67,7 @@ def getImdb(txt):
output.close()
try:
id = re.findall('imdb\.com\/title\/tt(\d{7})', txt)[0]
id = re.findall('imdb\.com\/title\/(tt\d{7})', txt)[0]
return id
except IndexError:
pass

4
couchpotato/core/plugins/base.py

@ -161,7 +161,7 @@ class Plugin(object):
def getCache(self, cache_key, url = None):
cache = Env.getValue('cache').get(cache_key)
cache = Env.get('cache').get(cache_key)
if cache:
log.debug('Getting cache %s' % cache_key)
return cache
@ -176,7 +176,7 @@ class Plugin(object):
def setCache(self, cache_key, value, timeout = 300):
log.debug('Setting cache %s' % cache_key)
Env.getValue('cache').set(cache_key, value, timeout)
Env.get('cache').set(cache_key, value, timeout)
return value
def isDisabled(self):

Loading…
Cancel
Save