summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
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):