diff options
author | Erik Johnston <erik@matrix.org> | 2019-02-12 12:40:42 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-02-12 12:40:42 +0000 |
commit | 495ea92350c4a3f6bd92cded5da939326b858d9b (patch) | |
tree | 0a8e3ce0d76443728a78ad18499b00b12ab6f5d6 | |
parent | Newsfile (diff) | |
download | synapse-495ea92350c4a3f6bd92cded5da939326b858d9b.tar.xz |
Fix pep8
-rw-r--r-- | synapse/storage/client_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/client_ips.py b/synapse/storage/client_ips.py index 6f81406269..cc23d7cdbe 100644 --- a/synapse/storage/client_ips.py +++ b/synapse/storage/client_ips.py @@ -124,7 +124,7 @@ class ClientIpStore(background_updates.BackgroundUpdateStore): def user_ips_analyze(txn): txn.execute("ANALYZE user_ips") - end_last_seen = yield self.runInteraction( + yield self.runInteraction( "user_ips_analyze", user_ips_analyze ) |