From b3d2d5349bb7b4d407aee61db6e8f59edd13aec6 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 20 Aug 2013 23:02:43 +0200 Subject: [PATCH] Rename database for TV branch --- couchpotato/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/runner.py b/couchpotato/runner.py index 230cce6..3fd1a42 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -81,7 +81,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En Env.set('encoding', encoding) # Do db stuff - db_path = toUnicode(os.path.join(data_dir, 'couchpotato.db')) + db_path = toUnicode(os.path.join(data_dir, 'couchpotato_v2.db')) # Backup before start and cleanup old databases new_backup = toUnicode(os.path.join(data_dir, 'db_backup', str(int(time.time())))) @@ -133,7 +133,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En # Development development = Env.setting('development', default = False, type = 'bool') Env.set('dev', development) - + # Disable logging for some modules for logger_name in ['enzyme', 'guessit', 'subliminal', 'apscheduler']: logging.getLogger(logger_name).setLevel(logging.ERROR)