summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-08-07 18:39:09 (GMT)
committerGitHub <noreply@github.com>2019-08-07 18:39:09 (GMT)
commit0378d98678f3617fd44d9a6266e7c17ebce62755 (patch)
tree6c98e1952426194c9156071bf0aa00fafa28ae09
parent87ce9588ceb4b4dd625913344844390f0b991b0c (diff)
downloadcpython-0378d98678f3617fd44d9a6266e7c17ebce62755.zip
cpython-0378d98678f3617fd44d9a6266e7c17ebce62755.tar.gz
cpython-0378d98678f3617fd44d9a6266e7c17ebce62755.tar.bz2
bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)
-rw-r--r--PC/layout/support/appxmanifest.py2
1 files changed, 1 insertions, 1 deletions
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),
},