Fix syntax error on allocine
This commit is contained in:
parent
0237112dd6
commit
747adc1251
1 changed files with 1 additions and 1 deletions
|
|
@ -470,7 +470,7 @@ class AllocineBrowser(Browser):
|
||||||
if res is None:
|
if res is None:
|
||||||
return
|
return
|
||||||
result = json.loads(res)
|
result = json.loads(res)
|
||||||
if 'feed' in in result and 'media' in result['feed']:
|
if 'feed' in result and 'media' in result['feed']:
|
||||||
for episode in result['feed']['media']:
|
for episode in result['feed']['media']:
|
||||||
if 'title' in episode:
|
if 'title' in episode:
|
||||||
yield self.parse_video(episode, category)
|
yield self.parse_video(episode, category)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue