From a95e6aab6bdcc634f77167e2d315f0ca04f4f1d7 Mon Sep 17 00:00:00 2001 From: Jonathan Rehm Date: Sun, 23 Jul 2017 13:26:43 -0700 Subject: [PATCH] Do not attempt to create the YAML file when Google Drive is disabled (#246) --- cps/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cps/web.py b/cps/web.py index 9050028d..4ab23f40 100755 --- a/cps/web.py +++ b/cps/web.py @@ -2333,8 +2333,8 @@ def configuration_helper(origin): if ("config_use_google_drive" in to_save and not content.config_use_google_drive) or ("config_use_google_drive" not in to_save and content.config_use_google_drive): content.config_use_google_drive = "config_use_google_drive" in to_save db_change = True - if not content.config_use_google_drive: - create_new_yaml = False + if not content.config_use_google_drive: + create_new_yaml = False if create_new_yaml: with open('settings.yaml', 'w') as f: with open('gdrive_template.yaml', 'r') as t: