.*?-->(?:.*? )?\s*(?P[^<]+)'
patronNext = r']+>([^<]+)')[0][0]
if 'episodio' in title.lower():
- ep = int(support.match(match, r'Episodio (\d+)')[0][0])
- if season > s and ep > 1:
- s += 1
- e = ep - 1
- title = str(season) + 'x' + str(ep-e).zfill(2) + ' - ' + title
- data += title + '|' + match + '\n'
-
-
+ ep = support.match(match, r'Episodio ((?:\d+.\d|\d+))')[0][0]
+ if '.' in ep:
+ sp += 1
+ title = '0' + 'x' + str(sp).zfill(2) + ' - ' + title
+ else:
+ ep = int(ep)
+ if season > s and ep > 1:
+ s += 1
+ e = ep - 1
+ title = str(season) + 'x' + str(ep-e).zfill(2) + ' - ' + title
+ data += title + '|' + match + '\n'
+
+
patron = r'(?P[^\|]+)\|(?P[^\n]+)\n'
action = 'findvideos'
return locals()