Fix default config file name
This commit is contained in:
parent
d23572b8cf
commit
eb7e913dd9
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ import argparse
|
||||||
|
|
||||||
def parse_arguments():
|
def parse_arguments():
|
||||||
ap = argparse.ArgumentParser(description='OpenPGP WKS for Human Beings')
|
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)
|
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. '
|
init = sp.add_parser('init', help='Initialize the EasyWKS working directory and generate the PGP Key. '
|
||||||
|
|
Loading…
Reference in a new issue