From f17ff97a47ca36cc3d6a46abcca650feb18c095a Mon Sep 17 00:00:00 2001 From: Bernard Teo Date: Sun, 19 Jan 2025 01:45:56 +0800 Subject: [PATCH] Fix grammar error in --help for --py-args --- src/app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index d64a6aeef29b..afaaa23eedf8 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -148,7 +148,7 @@ void usage( const QString &appName ) << QStringLiteral( "\t[-g, --globalsettingsfile path]\tuse the given ini file as Global Settings (defaults)\n" ) << QStringLiteral( "\t[-a, --authdbdirectory path] use the given directory for authentication database\n" ) << QStringLiteral( "\t[-f, --code path]\trun the given python file on load\n" ) - << QStringLiteral( "\t[-F, --py-args arguments]\targuments for python. This arguments will be available for each python execution via 'sys.argv' included the file specified by '--code'. All arguments till '--' are passed to python and ignored by QGIS\n" ) + << QStringLiteral( "\t[-F, --py-args arguments]\targuments for python. These arguments will be available for each python execution via 'sys.argv' including the file specified by '--code'. All arguments till '--' are passed to python and ignored by QGIS\n" ) << QStringLiteral( "\t[-d, --defaultui]\tstart by resetting user ui settings to default\n" ) << QStringLiteral( "\t[--hide-browser]\thide the browser widget\n" ) << QStringLiteral( "\t[--dxf-export filename.dxf]\temit dxf output of loaded datasets to given file\n" )