]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-145177: Fix Emscripten help text (#150874)
authorHood Chatham <roberthoodchatham@gmail.com>
Thu, 4 Jun 2026 00:00:51 +0000 (17:00 -0700)
committerGitHub <noreply@github.com>
Thu, 4 Jun 2026 00:00:51 +0000 (08:00 +0800)
Removes some stray commas in help text.

Platforms/emscripten/__main__.py

index c1eac8005474fda36a2eade1cf009e49a673dda4..c2fb1c4c36e6087262c429efe252b105b8d20b88 100644 (file)
@@ -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)