summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2015-03-26 11:53:58 +0000
committerPaul "LeoNerd" Evans <paul@matrix.org>2015-03-26 11:53:58 +0000
commita198894bf737566e368db546121aca026ed1fbeb (patch)
tree8123f93042e93a5fe432027303565b1519b74c0c /synapse
parentImplement the main getEvent cache using Cache() instead of a custom applicati... (diff)
downloadsynapse-a198894bf737566e368db546121aca026ed1fbeb.tar.xz
Appease pep8
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/_base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 5c7bd22e64..cf4c76d332 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -733,7 +733,8 @@ class SQLBaseStore(object):
     def _invalidate_get_event_cache(self, event_id):
         for check_redacted in (False, True):
             for get_prev_content in (False, True):
-                self._get_event_cache.invalidate(event_id, check_redacted, get_prev_content)
+                self._get_event_cache.invalidate(event_id, check_redacted,
+                                                 get_prev_content)
 
     def _get_event_txn(self, txn, event_id, check_redacted=True,
                        get_prev_content=False, allow_rejected=False):