From 6ee7333ebf1d556733117439d5b2c2f9fb608b4f Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Tue, 6 Dec 2022 16:02:15 -0500 Subject: [PATCH] Add "TAG" metavar for argparse option instead of the default. --- feediverse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feediverse.py b/feediverse.py index 03bb9ad..7deb28e 100755 --- a/feediverse.py +++ b/feediverse.py @@ -25,8 +25,8 @@ def main(): help="config file to use", default=os.path.expanduser(DEFAULT_CONFIG_FILE)) parser.add_argument("-d", "--dedupe", - help="dedupe against the given field", - default="") + help="dedupe against the given tag", + default="", metavar="TAG") args = parser.parse_args() config_file = args.config