diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-06-26 12:41:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-06-27 23:56:47 +0100 |
| commit | 4254b1b683776717cada1b6e43cc076b8fdbf7c1 (patch) | |
| tree | d3c45ad8de5ffd4e6a7b08192097d8c7af7ef78c /wscript | |
| parent | 07daa6dc99c7b0a0fc00e51f80b5fff6e870732d (diff) | |
Fix exception in wscript.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
