From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 7 Aug 2019 18:59:09 +0000 (-0700) Subject: bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165) X-Git-Tag: v3.8.0b4~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5;p=python bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165) (cherry picked from commit 0378d98678f3617fd44d9a6266e7c17ebce62755) Co-authored-by: Steve Dower --- diff --git a/PC/layout/support/appxmanifest.py b/PC/layout/support/appxmanifest.py index 4273b427e9..de5813a253 100644 --- a/PC/layout/support/appxmanifest.py +++ b/PC/layout/support/appxmanifest.py @@ -156,7 +156,7 @@ REGISTRY = { "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), },