Fix VVVVID
This commit is contained in:
+4
-1
@@ -142,7 +142,10 @@ def episodios(item):
|
|||||||
title = match[0]+'x'+match[1] + ' - ' + item.fulltitle
|
title = match[0]+'x'+match[1] + ' - ' + item.fulltitle
|
||||||
make_item = True
|
make_item = True
|
||||||
elif int(key['season_id']) == int(season_id):
|
elif int(key['season_id']) == int(season_id):
|
||||||
title = 'Episodio ' + key['number'] + ' - ' + key['title'].encode('utf8'),
|
try:
|
||||||
|
title = 'Episodio ' + key['number'] + ' - ' + key['title'].encode('utf8')
|
||||||
|
except:
|
||||||
|
title = 'Episodio ' + key['number'] + ' - ' + key['title']
|
||||||
make_item = True
|
make_item = True
|
||||||
else:
|
else:
|
||||||
make_item = False
|
make_item = False
|
||||||
|
|||||||
Reference in New Issue
Block a user