From 6df96f8cdb929028a43c694bb3f466fe079216af Mon Sep 17 00:00:00 2001 From: echel0n Date: Mon, 30 Jun 2014 02:33:18 -0700 Subject: [PATCH] Another test fix to reduce memory --- SickBeard.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/SickBeard.py b/SickBeard.py index 75a3704e..255445e5 100755 --- a/SickBeard.py +++ b/SickBeard.py @@ -19,11 +19,9 @@ # Check needed software dependencies to nudge users to fix their setup from __future__ import with_statement -import functools import sys import shutil -from sickbeard.exceptions import MultipleShowObjectsException if sys.version_info < (2, 6): print "Sorry, requires Python 2.6 or 2.7." @@ -383,10 +381,10 @@ def main(): sickbeard.launchBrowser(startPort) sys.exit() - # Build from the DB to start with - loadShowsFromDB() - def startup(): + # Build from the DB to start with + loadShowsFromDB() + # Fire up all our threads sickbeard.start()