From d228a905ebbf6ba047a69a7ffa97743e805cff3e Mon Sep 17 00:00:00 2001 From: Updatebot Date: Sun, 8 Sep 2024 11:02:15 -0500 Subject: [PATCH] Fix path to default config We use YAML now instead of TOML, so the name of the default configuration file should reflect that. --- updatebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updatebot.py b/updatebot.py index 9d3673b..e5f6c10 100644 --- a/updatebot.py +++ b/updatebot.py @@ -301,7 +301,7 @@ def parse_args() -> Arguments: '--config', '-c', type=Path, - default=XDG_CONFIG_HOME / 'updatebot' / 'config.toml', + default=XDG_CONFIG_HOME / 'updatebot' / 'config.yml', ) parser.add_argument('--dry-run', '-n', action='store_true', default=False) parser.add_argument('projects', metavar='project', nargs='*', default=[])