Return imdbid with 'tt'

This commit is contained in:
Ruud
2011-12-16 23:23:42 +01:00
parent c51c391ced
commit f337b2ed95
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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):