Skip to content

Commit 4a900f1

Browse files
committed
fix(cli): prevent session cookie help text concatenation
Add the trailing space so the continued string renders as 'session cookie will' instead of 'session cookiewill'.
1 parent 78afd36 commit 4a900f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

checkvsphere/tools/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def __init__(self):
106106
self._standard_args_group.add_argument('--sessionfile',
107107
required=False,
108108
action='store',
109-
help='Path to a file where the sessioncookie'
109+
help='Path to a file where the session cookie '
110110
'will be stored for later reuse. (EXPERIMENTAL)')
111111

112112
self._standard_args_group.add_argument('--match-method',

0 commit comments

Comments
 (0)