summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-01-28 13:58:32 +0000
committerDavid Baker <dave@matrix.org>2015-01-28 13:58:32 +0000
commite1ca0f1396425db5c80a975bb83596c7384484ef (patch)
tree31dc2ea275416d4de36001771e9987f190e865ac
parentRedundant bracketing & missed space (diff)
downloadsynapse-e1ca0f1396425db5c80a975bb83596c7384484ef.tar.xz
Brackets rather than slashes at end
-rw-r--r--synapse/push/__init__.py6
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.