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.