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)