Skip to content

Commit

Permalink
Merge pull request #671 from elig0n/patch-1
Browse files Browse the repository at this point in the history
Fix help line for "add --who"
  • Loading branch information
dbarnett authored Aug 23, 2024
2 parents f64a5e6 + 8599b91 commit dc8dfd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcalcli/argparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def get_argument_parser():
)
add.add_argument('--title', default=None, type=str, help='Event title')
add.add_argument(
'--who', default=[], type=str, action='append', help='Event title')
'--who', default=[], type=str, action='append', help='Event participants')
add.add_argument('--where', default=None, type=str, help='Event location')
add.add_argument('--when', default=None, type=str, help='Event time')
add.add_argument(
Expand Down

0 comments on commit dc8dfd1

Please sign in to comment.