Skip to content

Commit

Permalink
fix keyfile path
Browse files Browse the repository at this point in the history
  • Loading branch information
andreacosolo committed Sep 28, 2022
1 parent 5d32eef commit d424ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wranglertools/get_field_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def create_common_arg_parser():
help="The keypair identifier from the keyfile. \
Default is --key=default")
parser.add_argument('--keyfile',
default=f"{home}/keypairs.json",
help=f"The keypair file. Default is --keyfile={home}/keypairs.json")
default=home / 'keypairs.json',
help=f"The keypair file. Default is --keyfile={home / 'keypairs.json'}")
parser.add_argument('--debug',
default=False,
action='store_true',
Expand Down

0 comments on commit d424ed3

Please sign in to comment.