diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-10 16:34:10 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-10 16:34:10 +0100 |
commit | c315922b5f21957ddabd4245d67b7177386250aa (patch) | |
tree | cde98e790b3db1a48036b65e971d95758cad847a /synapse | |
parent | Clean up TransactionQueue (diff) | |
download | synapse-c315922b5f21957ddabd4245d67b7177386250aa.tar.xz |
PEP8
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/transaction_queue.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py index e3212b482a..cb2ef0210c 100644 --- a/synapse/federation/transaction_queue.py +++ b/synapse/federation/transaction_queue.py @@ -296,7 +296,9 @@ class TransactionQueue(object): if code != 200: for p in pdus: - logger.info("Failed to send event %s to %s", p.event_id, destination) + logger.info( + "Failed to send event %s to %s", p.event_id, destination + ) except NotRetryingDestination: logger.info( "TX [%s] not ready for retry yet - " |