mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
Another test fix to reduce memory
This commit is contained in:
parent
1b045d2194
commit
6df96f8cdb
1 changed files with 3 additions and 5 deletions
|
@ -19,11 +19,9 @@
|
||||||
|
|
||||||
# Check needed software dependencies to nudge users to fix their setup
|
# Check needed software dependencies to nudge users to fix their setup
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
import functools
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
from sickbeard.exceptions import MultipleShowObjectsException
|
|
||||||
|
|
||||||
if sys.version_info < (2, 6):
|
if sys.version_info < (2, 6):
|
||||||
print "Sorry, requires Python 2.6 or 2.7."
|
print "Sorry, requires Python 2.6 or 2.7."
|
||||||
|
@ -383,10 +381,10 @@ def main():
|
||||||
sickbeard.launchBrowser(startPort)
|
sickbeard.launchBrowser(startPort)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
def startup():
|
||||||
# Build from the DB to start with
|
# Build from the DB to start with
|
||||||
loadShowsFromDB()
|
loadShowsFromDB()
|
||||||
|
|
||||||
def startup():
|
|
||||||
# Fire up all our threads
|
# Fire up all our threads
|
||||||
sickbeard.start()
|
sickbeard.start()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue