From 34fe103c2b71d7ff7bca288a71d198a7bb0e758f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 May 2021 06:14:40 +0530 Subject: [PATCH] Prefix by GPG signature instead --- publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.py b/publish.py index 10499e85a..514de101d 100755 --- a/publish.py +++ b/publish.py @@ -350,7 +350,7 @@ def run_upload(args: Any) -> None: if not os.path.exists(path): raise SystemExit(f'The installer {path} does not exist') files[path] = desc - signatures[path] = desc + ' GPG signature' + signatures[path] = f'GPG signature for {desc}' files[f'build/kitty-{version}.tar.xz'] = 'Source code' files[f'build/kitty-{version}.tar.xz.sig'] = 'Source code GPG signature' for path, desc in signatures.items():