From 9da16092c7add153759c1ebf035533a420567c1d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 24 Jun 2019 23:59:32 +0100 Subject: [PATCH] Better error when failing to download supporters lists. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index e4e0f84b4..89bfff194 100644 --- a/wscript +++ b/wscript @@ -546,7 +546,7 @@ def download_supporters(can_fail): if (r >> 8) == 0: r = os.system('curl -s -f https://dcpomatic.com/subscribers.cc?%s > src/wx/subscribers.cc' % urlencode({"until": last_date.strip()})) if (r >> 8) != 0 and can_fail: - raise Exception("Could not download supporters lists") + raise Exception("Could not download supporters lists (%d)", r >> 8) def build(bld): create_version_cc(VERSION, bld.env.CXXFLAGS) -- 2.30.2