From e1ca0f1396425db5c80a975bb83596c7384484ef Mon Sep 17 00:00:00 2001
From: David Baker <dave@matrix.org>
Date: Wed, 28 Jan 2015 13:58:32 +0000
Subject: [PATCH] Brackets rather than slashes at end

---
 synapse/push/__init__.py | 6 +++---
 1 file 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.
-- 
GitLab