From 3b8184cef3a2014028ef18c8625c975375a468fc Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 28 Mar 2015 15:42:04 +0100 Subject: [PATCH] make_download: show which file failed signaure check --- contrib/make_download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/make_download b/contrib/make_download index 0839ea80b..ee315866a 100755 --- a/contrib/make_download +++ b/contrib/make_download @@ -41,7 +41,7 @@ for k, n in files.items(): string = re.sub("
(.*?)
"%k, '', string, flags=re.DOTALL + re.MULTILINE) continue if os.system("gpg --verify %s"%sigpath) != 0: - raise + raise BaseException(sigpath) string = string.replace("##link_%s##"%k, link)