diff options
author | David Baker <dave@matrix.org> | 2015-01-28 13:58:32 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-01-28 13:58:32 +0000 |
commit | e1ca0f1396425db5c80a975bb83596c7384484ef (patch) | |
tree | 31dc2ea275416d4de36001771e9987f190e865ac /synapse/push | |
parent | Redundant bracketing & missed space (diff) | |
download | synapse-e1ca0f1396425db5c80a975bb83596c7384484ef.tar.xz |
Brackets rather than slashes at end
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py index 8ddc833577..8a3e8fd2a3 100644 --- a/synapse/push/__init__.py +++ b/synapse/push/__init__.py @@ -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. |