summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-07 18:59:09 (GMT)
committerGitHub <noreply@github.com>2019-08-07 18:59:09 (GMT)
commit84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5 (patch)
treedb385891e8e2b3fe1eb65daa87bd38b4a28be813
parentdc6653fd06598f42b107dcffcd089d7ee2b1cd44 (diff)
downloadcpython-84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5.zip
cpython-84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5.tar.gz
cpython-84d31bbf1f7e10bde1ceadcfa0d83d30a04313d5.tar.bz2
bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)
(cherry picked from commit 0378d98678f3617fd44d9a6266e7c17ebce62755) Co-authored-by: Steve Dower <steve.dower@python.org>
-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),
},