1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fix #2 for github module not found issue

This commit is contained in:
echel0n 2014-11-16 03:20:14 -08:00
parent 4d41d881eb
commit 5d46d267b6
2 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ import threading
import getopt
import sickbeard
from sickbeard import db, logger, network_timezones, failed_history, name_cache, versionChecker
from sickbeard import db, logger, network_timezones, failed_history, name_cache
from sickbeard.tv import TVShow
from sickbeard.webserveInit import SRWebServer
from sickbeard.databases.mainDB import MIN_DB_VERSION, MAX_DB_VERSION

View File

@ -543,6 +543,9 @@ def initialize(consoleLogging=True):
CheckSection(CFG, 'Pushbullet')
CheckSection(CFG, 'Subtitles')
# github api
gh = Github().get_organization(GIT_ORG).get_repo(GIT_REPO)
# wanted branch
BRANCH = check_setting_str(CFG, 'General', 'branch', '')
@ -1113,9 +1116,6 @@ def initialize(consoleLogging=True):
tmp_provider.set_config(cur_metadata_config)
metadata_provider_dict[tmp_provider.name] = tmp_provider
# github
gh = Github().get_organization(GIT_ORG).get_repo(GIT_REPO)
# initialize schedulers
# updaters
update_now = datetime.timedelta(minutes=0)