From b9b51871165d5da28b04ca408d2f8fb50c64ca33 Mon Sep 17 00:00:00 2001 From: frank Date: Mon, 20 Feb 2023 21:13:27 -0500 Subject: [PATCH] add info about delimiter to command line config example docstring --- pgfw/Configuration.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pgfw/Configuration.py b/pgfw/Configuration.py index 6b5055c..6bbdaeb 100644 --- a/pgfw/Configuration.py +++ b/pgfw/Configuration.py @@ -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. """