0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-03 06:59:01 +02:00

Brackets rather than slashes at end

This commit is contained in:
David Baker 2015-01-28 13:58:32 +00:00
parent 6df6f5e084
commit e1ca0f1396

View file

@ -226,9 +226,9 @@ class Pusher(object):
self.failing_since
)
if self.failing_since and \
self.failing_since < \
self.clock.time_msec() - Pusher.GIVE_UP_AFTER:
if (self.failing_since and
self.failing_since <
self.clock.time_msec() - Pusher.GIVE_UP_AFTER):
# we really only give up so that if the URL gets
# fixed, we don't suddenly deliver a load
# of old notifications.