Better grammer of --wait

This commit is contained in:
Josh Klecka 2022-12-29 15:22:54 -06:00
parent 4cdfed10f1
commit 1fc7846b67
2 changed files with 2 additions and 2 deletions

View file

@ -517,7 +517,7 @@ optional arguments:
Override executable to launch (relative path)
--origin Launch Origin to activate or run the game.
--json Print launch information as JSON and exit
--wait Wait for game to finish running
--wait Wait for the game to finish running
--wine <wine binary> Set WINE binary to use to launch the app
--wine-prefix <wine pfx path>
Set WINE prefix to use

View file

@ -2730,7 +2730,7 @@ def main():
help='Launch Origin to activate or run the game.')
launch_parser.add_argument('--json', dest='json', action='store_true',
help='Print launch information as JSON and exit')
launch_parser.add_argument('--wait', dest='wait', action='store_true', help='Wait for game to finish running')
launch_parser.add_argument('--wait', dest='wait', action='store_true', help='Wait for the game to finish running')
if os.name != 'nt':
launch_parser.add_argument('--wine', dest='wine_bin', action='store', metavar='<wine binary>',