diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-26 23:43:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 23:43:12 (GMT) |
commit | 133fb267f437f9bd568738d0e0e59e574fc82b02 (patch) | |
tree | 49dca2f4a044d0313880611e2ee5503ec50bd219 /PC | |
parent | b3f14dacfea54332e2ddde792142d818b3554dbc (diff) | |
download | cpython-133fb267f437f9bd568738d0e0e59e574fc82b02.zip cpython-133fb267f437f9bd568738d0e0e59e574fc82b02.tar.gz cpython-133fb267f437f9bd568738d0e0e59e574fc82b02.tar.bz2 |
bpo-45901: Fixes argument passing when invoking .py files directly through the Store package (GH-29799)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/layout/support/appxmanifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/layout/support/appxmanifest.py b/PC/layout/support/appxmanifest.py index 747c97a..15119b0 100644 --- a/PC/layout/support/appxmanifest.py +++ b/PC/layout/support/appxmanifest.py @@ -430,7 +430,7 @@ def get_appxmanifest(ns): ["python", "python{}".format(VER_MAJOR), "python{}".format(VER_DOT)], PYTHON_VE_DATA, "console", - ("python.file", [".py"], '"%1"', "Python File", PY_PNG), + ("python.file", [".py"], '"%1" %*', "Python File", PY_PNG), ) add_application( @@ -441,7 +441,7 @@ def get_appxmanifest(ns): ["pythonw", "pythonw{}".format(VER_MAJOR), "pythonw{}".format(VER_DOT)], PYTHONW_VE_DATA, "windows", - ("python.windowedfile", [".pyw"], '"%1"', "Python File (no console)", PY_PNG), + ("python.windowedfile", [".pyw"], '"%1" %*', "Python File (no console)", PY_PNG), ) if ns.include_pip and ns.include_launchers: |