0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-25 11:08:57 +02:00

remove errant yield

This commit is contained in:
Neil Johnson 2018-08-17 10:12:11 +01:00
parent 7e51342196
commit 521d369e7a

View file

@ -525,7 +525,7 @@ def run(hs):
clock.looping_call(
hs.get_datastore().reap_monthly_active_users, 1000 * 60 * 60
)
yield hs.get_datastore().reap_monthly_active_users()
hs.get_datastore().reap_monthly_active_users()
@defer.inlineCallbacks
def generate_monthly_active_users():