mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
Do not attempt to create the YAML file when Google Drive is disabled (#246)
This commit is contained in:
parent
cb5f196f4b
commit
a95e6aab6b
@ -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):
|
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
|
content.config_use_google_drive = "config_use_google_drive" in to_save
|
||||||
db_change = True
|
db_change = True
|
||||||
if not content.config_use_google_drive:
|
if not content.config_use_google_drive:
|
||||||
create_new_yaml = False
|
create_new_yaml = False
|
||||||
if create_new_yaml:
|
if create_new_yaml:
|
||||||
with open('settings.yaml', 'w') as f:
|
with open('settings.yaml', 'w') as f:
|
||||||
with open('gdrive_template.yaml', 'r') as t:
|
with open('gdrive_template.yaml', 'r') as t:
|
||||||
|
Loading…
Reference in New Issue
Block a user