summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-11-04 00:30:17 +0100
committerCarl Hetherington <cth@carlh.net>2019-11-04 00:30:31 +0100
commit8ae50e4e54449d0a347f7b3f4bed76e7cf48786a (patch)
tree6a6e553918fce12011c886bab78012ea22963df8 /wscript
parent1b81a1ee7c4eba533fd49939f8e76744f94038b6 (diff)
Don't bother limiting supporters by until date.
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 2 insertions, 3 deletions
diff --git a/wscript b/wscript
index 9a924a5e7..9cceb25cc 100644
--- a/wscript
+++ b/wscript
@@ -551,10 +551,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 -m 2 -s -f https://dcpomatic.com/supporters.cc?%s > src/wx/supporters.cc' % urlencode({"until": last_date.strip()}))
+ r = os.system('curl -m 2 -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))