add info about delimiter to command line config example docstring

This commit is contained in:
ohsqueezy 2023-02-20 21:13:27 -05:00
parent 71cc53f399
commit b9b5187116
1 changed files with 3 additions and 2 deletions

View File

@ -407,9 +407,10 @@ class Configuration(RawConfigParser):
is a string starting with the chosen delimiter, followed by the section name, option name, and option value each separated by the
chosen delimiter.
For example,
For example, set the screen dimensions using "|" as the delimiter and set the Q key to the quit command using "," as the
delimiter,
$ ./OPEN-GAME --config "|display|dimensions|960,540" ",keys,quit,K_q"
$ ./OPEN-GAME --config "|display|dimensions|960,540" ",keys,quit,K_q"
@param command_line A list of strings to use as the command line. If this is `None`, `sys.argv` is used instead.
"""