Let's not bother removing supporters who didn't donate before the tag date of a release.
authorCarl Hetherington <cth@carlh.net>
Sun, 3 Nov 2019 23:29:34 +0000 (23:29 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 3 Nov 2019 23:29:34 +0000 (23:29 +0000)
wscript

diff --git a/wscript b/wscript
index c7245c47be9685707057dfeb4ec9f501f0d2946f..d4f68c3af746d176463115b4d2c79e35e2c68911 100644 (file)
--- a/wscript
+++ b/wscript
@@ -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))