From: Carl Hetherington Date: Wed, 26 Jun 2019 11:41:43 +0000 (+0100) Subject: Fix exception in wscript. X-Git-Tag: v2.15.9~5 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=4254b1b683776717cada1b6e43cc076b8fdbf7c1 Fix exception in wscript. --- diff --git a/wscript b/wscript index 89bfff194..e562f6741 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 (%d)", r >> 8) + raise Exception("Could not download supporters lists (%d)" % (r >> 8)) def build(bld): create_version_cc(VERSION, bld.env.CXXFLAGS)