mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Fix for show opt not in __init__ issues
This commit is contained in:
parent
ba2a44b1d1
commit
0ddcc3b58a
1 changed files with 1 additions and 1 deletions
|
@ -581,7 +581,7 @@ class TVShow(object):
|
||||||
logger.log(str(self.indexerid) + u": Creating episode object from " + file, logger.DEBUG)
|
logger.log(str(self.indexerid) + u": Creating episode object from " + file, logger.DEBUG)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
myParser = NameParser(show=self, useIndexers=True)
|
myParser = NameParser(showObj=self, useIndexers=True)
|
||||||
parse_result = myParser.parse(file)
|
parse_result = myParser.parse(file)
|
||||||
except InvalidNameException:
|
except InvalidNameException:
|
||||||
logger.log(u"Unable to parse the filename " + file + " into a valid episode", logger.ERROR)
|
logger.log(u"Unable to parse the filename " + file + " into a valid episode", logger.ERROR)
|
||||||
|
|
Loading…
Reference in a new issue