From 7613bdc7ad16eb70b756f8f1d50ce3a942447fb0 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 7 Sep 2014 18:57:48 +0800 Subject: [PATCH] Fix default post processing with sync files option --- sickbeard/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/__init__.py b/sickbeard/__init__.py index afa85cd0..de9c05cc 100755 --- a/sickbeard/__init__.py +++ b/sickbeard/__init__.py @@ -678,7 +678,7 @@ def initialize(consoleLogging=True): KEEP_PROCESSED_DIR = bool(check_setting_int(CFG, 'General', 'keep_processed_dir', 1)) PROCESS_METHOD = check_setting_str(CFG, 'General', 'process_method', 'copy' if KEEP_PROCESSED_DIR else 'move') MOVE_ASSOCIATED_FILES = bool(check_setting_int(CFG, 'General', 'move_associated_files', 0)) - POSTPONE_IF_SYNC_FILES = bool(check_setting_int(CFG, 'General', 'postpone_if_sync_files', 0)) + POSTPONE_IF_SYNC_FILES = bool(check_setting_int(CFG, 'General', 'postpone_if_sync_files', 1)) NFO_RENAME = bool(check_setting_int(CFG, 'General', 'nfo_rename', 1)) CREATE_MISSING_SHOW_DIRS = bool(check_setting_int(CFG, 'General', 'create_missing_show_dirs', 0)) ADD_SHOWS_WO_DIR = bool(check_setting_int(CFG, 'General', 'add_shows_wo_dir', 0))