diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-03 23:29:34 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-11-03 23:29:34 +0000 |
| commit | b4f942ef0b7b9e2f781c0d17b3ad43884750fa7a (patch) | |
| tree | d631cb3d0c487accf0ab82c299bc28a89ea3d68a | |
| parent | 9fd1cd191fe59ab53f5942dfdc631dac06efa206 (diff) | |
Let's not bother removing supporters who didn't donate before the tag date of a release.
| -rw-r--r-- | wscript | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -542,10 +542,9 @@ def configure(conf): Logs.pprint('YELLOW', '') def download_supporters(can_fail): - last_date = subprocess.Popen(shlex.split('git log -1 --format=%%ai %s' % last_version), stdout=subprocess.PIPE).communicate()[0] - r = os.system('curl -s -f https://dcpomatic.com/supporters.cc?%s > src/wx/supporters.cc' % urlencode({"until": last_date.strip()})) + r = os.system('curl -s -f https://dcpomatic.com/supporters.cc > src/wx/supporters.cc') 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()})) + r = os.system('curl -s -f https://dcpomatic.com/subscribers.cc > src/wx/subscribers.cc') if (r >> 8) != 0: if can_fail: raise Exception("Could not download supporters lists (%d)" % (r >> 8)) |
