summary refs log tree commit diff
path: root/synapse/util/logcontext.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-10 14:21:10 +0100
committerErik Johnston <erik@matrix.org>2016-08-10 16:24:16 +0100
commitca8abfbf306ac1ecfe6927e99f0ce1f9eb5c9971 (patch)
treebbcb93caf0f11507c66760eccaa76aeb4e9eb9a8 /synapse/util/logcontext.py
parentMerge pull request #999 from matrix-org/erikj/measure_more (diff)
downloadsynapse-ca8abfbf306ac1ecfe6927e99f0ce1f9eb5c9971.tar.xz
Clean up TransactionQueue
Diffstat (limited to 'synapse/util/logcontext.py')
-rw-r--r--synapse/util/logcontext.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/util/logcontext.py b/synapse/util/logcontext.py
index 5316259d15..7a87045f87 100644
--- a/synapse/util/logcontext.py
+++ b/synapse/util/logcontext.py
@@ -317,7 +317,6 @@ def preserve_fn(f):
     def g(*args, **kwargs):
         with PreserveLoggingContext(current):
             return f(*args, **kwargs)
-
     return g