diff --git a/chatmastermind/main.py b/chatmastermind/main.py index 702d8c0..3a64a89 100755 --- a/chatmastermind/main.py +++ b/chatmastermind/main.py @@ -96,8 +96,8 @@ def create_parser() -> argparse.ArgumentParser: hist_cmd_parser.add_argument('-l', '--location', choices=[x.value for x in msg_location], default='db', - help='Select message location, default is \'db\'') - hist_cmd_parser.add_argument('-g', '--glob', help='Glob for message file names') + help='Use given location when building the chat history (default: \'db\')') + hist_cmd_parser.add_argument('-g', '--glob', help='Filter message files using the given glob pattern') # 'tags' command parser tags_cmd_parser = cmdparser.add_parser('tags',