From 0378d98678f3617fd44d9a6266e7c17ebce62755 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Wed, 7 Aug 2019 11:39:09 -0700 Subject: bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165) --- PC/layout/support/appxmanifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/layout/support/appxmanifest.py b/PC/layout/support/appxmanifest.py index 4273b42..de5813a 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), }, -- cgit v0.12