rename 'config.yaml' to 'config.yml'
This commit is contained in:
parent
9bf379a8eb
commit
80c17610a4
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue