summary refs log tree commit diff
path: root/synapse/app/_base.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
commit35d74a232c7b6141706e1ceaf2e2342ad5dce301 (patch)
tree39983a41a60b176389c224a66371e9b47f8c040e /synapse/app/_base.py
parent1.11.0 (diff)
parentClarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957) (diff)
downloadsynapse-35d74a232c7b6141706e1ceaf2e2342ad5dce301.tar.xz
Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
* commit '509e381af':
  Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
  changelog
  Increase MAX_EVENTS_BEHIND for replication clients
Diffstat (limited to 'synapse/app/_base.py')
-rw-r--r--synapse/app/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py

index 109b1e2fb5..9ffd23c6df 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py
@@ -141,7 +141,7 @@ def start_reactor( def quit_with_error(error_string): message_lines = error_string.split("\n") - line_length = max([len(l) for l in message_lines if len(l) < 80]) + 2 + line_length = max(len(l) for l in message_lines if len(l) < 80) + 2 sys.stderr.write("*" * line_length + "\n") for line in message_lines: sys.stderr.write(" %s\n" % (line.rstrip(),))