https://github.com/python/cpython/commit/57d444612d9c8a0eab66543d5bf8539103a59b47
commit: 57d444612d9c8a0eab66543d5bf8539103a59b47
branch: main
author: Hood Chatham <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2026-06-04T08:00:51+08:00
summary:

gh-145177: Fix Emscripten help text (#150874)

Removes some stray commas in help text.

files:
M Platforms/emscripten/__main__.py

diff --git a/Platforms/emscripten/__main__.py b/Platforms/emscripten/__main__.py
index c1eac8005474fda..c2fb1c4c36e6087 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)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to