Fix for scene numbering issues

This commit is contained in:
echel0n 2014-05-11 12:50:34 -07:00
parent 694b210f2d
commit 7ce27b72f5
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ class GenericProvider:
if ep_obj.season == ep_obj.scene_season and ep_obj.episode == ep_obj.scene_episode:
parse_result = myParser.parse(title)
else:
parse_result = myParser.parse(title)
parse_result = myParser.parse(title).convert()
except InvalidNameException:
logger.log(u"Unable to parse the filename " + title + " into a valid episode", logger.WARNING)
continue