[Python-checkins] bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)

Miss Islington (bot) webhook-mailer at python.org
Wed Aug 7 14:59:13 EDT 2019


https://github.com/python/cpython/commit/84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5
commit: 84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-08-07T11:59:09-07:00
summary:

bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)

(cherry picked from commit 0378d98678f3617fd44d9a6266e7c17ebce62755)

Co-authored-by: Steve Dower <steve.dower at python.org>

files:
M PC/layout/support/appxmanifest.py

diff --git a/PC/layout/support/appxmanifest.py b/PC/layout/support/appxmanifest.py
index 4273b427e903..de5813a2536a 100644
--- a/PC/layout/support/appxmanifest.py
+++ b/PC/layout/support/appxmanifest.py
@@ -156,7 +156,7 @@
             "SysVersion": VER_DOT,
             "Version": "{}.{}.{}".format(VER_MAJOR, VER_MINOR, VER_MICRO),
             "InstallPath": {
-                "": "[{{AppVPackageRoot}}]",
+                "": "[{AppVPackageRoot}]",
                 "ExecutablePath": "[{{AppVPackageRoot}}]\\python{}.exe".format(VER_DOT),
                 "WindowedExecutablePath": "[{{AppVPackageRoot}}]\\pythonw{}.exe".format(VER_DOT),
             },



More information about the Python-checkins mailing list