commit 3b8184cef3a2014028ef18c8625c975375a468fc
parent 9dd0728558168d5b77695f6cc6945d3ae9ddc081
Author: ThomasV <thomasv@gitorious>
Date: Sat, 28 Mar 2015 15:42:04 +0100
make_download: show which file failed signaure check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/make_download b/contrib/make_download
@@ -41,7 +41,7 @@ for k, n in files.items():
string = re.sub("<div id=\"%s\">(.*?)</div>"%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)