diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-04-22 14:34:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 14:34:31 +0100 |
commit | 82d8b1dd1f9712e6fe29da671b079c646a663a48 (patch) | |
tree | bec16cf4fb85247aa7d45d4be71de89078483d38 /synapse/replication/tcp | |
parent | fix changelog name (diff) | |
download | synapse-82d8b1dd1f9712e6fe29da671b079c646a663a48.tar.xz |
Another go at fixing one-word commands (#7326)
I messed this up last time I tried (#7239 / e13c6c7).
Diffstat (limited to 'synapse/replication/tcp')
-rw-r--r-- | synapse/replication/tcp/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/commands.py b/synapse/replication/tcp/commands.py index 5002efe6a0..f26aee83cb 100644 --- a/synapse/replication/tcp/commands.py +++ b/synapse/replication/tcp/commands.py @@ -462,7 +462,7 @@ def parse_command_from_line(line: str) -> Command: Line should already be stripped of whitespace and be checked if blank. """ - idx = line.index(" ") + idx = line.find(" ") if idx >= 0: cmd_name = line[:idx] rest_of_line = line[idx + 1 :] |