1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

Fixed nextaired not found issues and fixed kat provider issues.

This commit is contained in:
echel0n 2014-07-09 09:01:12 -07:00
parent f925488373
commit e891e9d637
3 changed files with 7 additions and 7 deletions

View File

@ -66,6 +66,7 @@ from sickbeard.webserveInit import SRWebServer
from sickbeard.version import SICKBEARD_VERSION
from sickbeard.databases.mainDB import MIN_DB_VERSION
from sickbeard.databases.mainDB import MAX_DB_VERSION
from sickbeard import exceptions
from lib.configobj import ConfigObj
@ -259,6 +260,9 @@ class SickRage(object):
# Get PID
sickbeard.PID = os.getpid()
# Build from the DB to start with
self.loadShowsFromDB()
if self.forcedPort:
logger.log(u"Forcing web server to port " + str(self.forcedPort))
self.startPort = self.forcedPort
@ -310,9 +314,6 @@ class SickRage(object):
if self.consoleLogging:
print "Starting up SickRage " + SICKBEARD_VERSION + " from " + sickbeard.CONFIG_FILE
# Build from the DB to start with
self.loadShowsFromDB()
# Fire up all our threads
sickbeard.start()
@ -420,7 +421,6 @@ class SickRage(object):
logger.log(
u"There was an error creating the show in " + sqlShow["location"] + ": " + str(e).decode('utf-8'),
logger.ERROR)
logger.log(traceback.format_exc(), logger.DEBUG)
def restore(self, srcDir, dstDir):
try:

View File

@ -64,7 +64,7 @@ class KATProvider(generic.TorrentProvider):
self.cache = KATCache(self)
self.urls = ['http://kickass.to/', 'http://katproxy.com']
self.urls = ['http://kickass.to/', 'http://katproxy.com/']
def isEnabled(self):
return self.enabled

View File

@ -96,7 +96,7 @@ class TVShow(object):
self.lock = threading.Lock()
self.isDirGood = False
self.episodes = {}
self.nextaired = None
self.nextaired = ""
otherShow = helpers.findCertainShow(sickbeard.showList, self.indexerid)
if otherShow != None:
@ -988,7 +988,7 @@ class TVShow(object):
if sqlResults == None or len(sqlResults) == 0:
logger.log(str(self.indexerid) + u": No episode found... need to implement a show status",
logger.DEBUG)
self.nextaired = None
self.nextaired = ""
else:
logger.log(str(self.indexerid) + u": Found episode " + str(sqlResults[0]["season"]) + "x" + str(
sqlResults[0]["episode"]), logger.DEBUG)