From eb7e913dd9016b2381791f6aa24e5653c62b2d3d Mon Sep 17 00:00:00 2001 From: s3lph Date: Sun, 26 Sep 2021 18:49:06 +0200 Subject: [PATCH] Fix default config file name --- easywks/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easywks/main.py b/easywks/main.py index c94b202..e71b670 100644 --- a/easywks/main.py +++ b/easywks/main.py @@ -12,7 +12,7 @@ import argparse def parse_arguments(): ap = argparse.ArgumentParser(description='OpenPGP WKS for Human Beings') - ap.add_argument('--config', '-c', metavar='/path/to/config.yml', type=str, nargs=1, default='/etc/easywks.yaml') + ap.add_argument('--config', '-c', metavar='/path/to/config.yml', type=str, nargs=1, default='/etc/easywks.yml') sp = ap.add_subparsers(description='EasyWKS understands the following commands:', required=True) init = sp.add_parser('init', help='Initialize the EasyWKS working directory and generate the PGP Key. '