From d0802d07d2c864b95480a9b24c7cc050e19189d5 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Tue, 10 Dec 2019 15:19:03 -0800 Subject: bpo-39012: Fix RC version suffix for nuget release files (GH-17564) --- PC/layout/support/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/layout/support/constants.py b/PC/layout/support/constants.py index a864763..6cf0fe1 100644 --- a/PC/layout/support/constants.py +++ b/PC/layout/support/constants.py @@ -20,7 +20,7 @@ def _unpack_hexversion(): def _get_suffix(field4): - name = {0xA0: "a", 0xB0: "b", 0xC0: "c"}.get(field4 & 0xF0, "") + name = {0xA0: "a", 0xB0: "b", 0xC0: "rc"}.get(field4 & 0xF0, "") if name: serial = field4 & 0x0F return f"{name}{serial}" -- cgit v0.12