From 291ff880a096aa47ecf58e45e81f9a1d182cf62c Mon Sep 17 00:00:00 2001 From: echel0n Date: Sun, 16 Nov 2014 04:10:29 -0800 Subject: [PATCH] Fix #6 for github module not found issue --- SickBeard.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/SickBeard.py b/SickBeard.py index d9d8b01b..1cbfddbb 100755 --- a/SickBeard.py +++ b/SickBeard.py @@ -55,6 +55,8 @@ import datetime import threading import getopt +import lib.github as github + import sickbeard from sickbeard import db, logger, network_timezones, failed_history, name_cache from sickbeard.tv import TVShow @@ -62,7 +64,6 @@ from sickbeard.webserveInit import SRWebServer from sickbeard.databases.mainDB import MIN_DB_VERSION, MAX_DB_VERSION from sickbeard.event_queue import Events from lib.configobj import ConfigObj -from lib.github import Github throwaway = datetime.datetime.strptime('20110101', '%Y%m%d') @@ -74,9 +75,6 @@ class SickRage(object): # system event callback for shutdown/restart sickbeard.events = Events(self.shutdown) - # github api - sickbeard.gh = Github().get_organization(sickbeard.GIT_ORG).get_repo(sickbeard.GIT_REPO) # wanted branch - # daemon constants self.runAsDaemon = False self.CREATEPID = False @@ -292,6 +290,9 @@ class SickRage(object): MAX_DB_VERSION) + ").\n" + \ "If you have used other forks of SB, your database may be unusable due to their modifications.") + # github api + sickbeard.gh = github.Github().get_organization(sickbeard.GIT_ORG).get_repo(sickbeard.GIT_REPO) # wanted branch + # Initialize the config and our threads sickbeard.initialize(consoleLogging=self.consoleLogging)