From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 4 Jun 2026 00:21:15 +0000 (+0200) Subject: [3.14] gh-145177: Fix Emscripten help text (GH-150874) (#150895) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=045bc6bcbf16a229500ce029a333314654916866;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-145177: Fix Emscripten help text (GH-150874) (#150895) Removes some stray commas in help text. (cherry picked from commit 57d444612d9c8a0eab66543d5bf8539103a59b47) Co-authored-by: Hood Chatham --- diff --git a/Platforms/emscripten/__main__.py b/Platforms/emscripten/__main__.py index c1eac8005474..c2fb1c4c36e6 100644 --- a/Platforms/emscripten/__main__.py +++ b/Platforms/emscripten/__main__.py @@ -650,7 +650,7 @@ def add_cross_build_dir_option(subcommand): help=( "Path to the cross-build directory " f"(default: {DEFAULT_CROSS_BUILD_DIR}). " - "Can also be set with the CROSS_BUILD_DIR environment variable.", + "Can also be set with the CROSS_BUILD_DIR environment variable." ), ) @@ -743,7 +743,7 @@ def main(): nargs=argparse.REMAINDER, help=( "Arguments to pass to the emscripten Python " - "(use '--' to separate from run options)", + "(use '--' to separate from run options)" ), ) add_cross_build_dir_option(run)