fix release date for 0107394
This commit is contained in:
parent
3c82645837
commit
9cc7b2529d
2 changed files with 3 additions and 1 deletions
|
@ -92,6 +92,8 @@ def getMovieInfo(imdbId):
|
||||||
if key in info:
|
if key in info:
|
||||||
del info[key]
|
del info[key]
|
||||||
if 'release date' in info:
|
if 'release date' in info:
|
||||||
|
if isinstance(info['release date'], list):
|
||||||
|
info['release date'] = info['release date'][0]
|
||||||
info['release date'] = info['release date'].split('\n')[0]
|
info['release date'] = info['release date'].split('\n')[0]
|
||||||
if 'plot' in info:
|
if 'plot' in info:
|
||||||
info['plot'] = info['plot'].split('| add synopsis')[0].strip()
|
info['plot'] = info['plot'].split('| add synopsis')[0].strip()
|
||||||
|
|
|
@ -85,7 +85,7 @@ def find(query, max_results=10):
|
||||||
data = getUrl(url, timeout=0)
|
data = getUrl(url, timeout=0)
|
||||||
result = simplejson.loads(data)
|
result = simplejson.loads(data)
|
||||||
results = []
|
results = []
|
||||||
if result:
|
if result and 'query' in result:
|
||||||
for r in result['query']['search']:
|
for r in result['query']['search']:
|
||||||
title = r['title']
|
title = r['title']
|
||||||
url = "http://en.wikipedia.org/wiki/%s" % title.replace(' ', '_')
|
url = "http://en.wikipedia.org/wiki/%s" % title.replace(' ', '_')
|
||||||
|
|
Loading…
Reference in a new issue