From 80c17610a456446f92d157dce34ecb29f3177bc1 Mon Sep 17 00:00:00 2001 From: Marc Michalsky Date: Sun, 14 Feb 2021 21:55:29 +0100 Subject: [PATCH] rename 'config.yaml' to 'config.yml' --- backup.py | 2 +- restore.py | 2 +- upgrade.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backup.py b/backup.py index d57406e..3efa052 100644 --- a/backup.py +++ b/backup.py @@ -19,7 +19,7 @@ def backup(): utils.set_flags(sys.argv) # Load configuration - config = Path(__file__).parent / "config.yaml" + config = Path(__file__).parent / "config.yml" with open(config) as file: # Load config config_list = yaml.full_load(file) diff --git a/restore.py b/restore.py index 1f14d50..3697951 100644 --- a/restore.py +++ b/restore.py @@ -17,7 +17,7 @@ def restore(): utils.set_flags(sys.argv) # Load config - config = Path(__file__).parent / "config.yaml" + config = Path(__file__).parent / "config.yml" with open(config) as file: # Load config config_list = yaml.full_load(file) diff --git a/upgrade.py b/upgrade.py index 5778573..41ac6dc 100644 --- a/upgrade.py +++ b/upgrade.py @@ -20,7 +20,7 @@ def upgrade(): utils.set_flags(sys.argv) # Load config - config = Path(__file__).parent / "config.yaml" + config = Path(__file__).parent / "config.yml" with open(config) as file: # Load config config_list = yaml.full_load(file)