summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-04-22 14:34:31 +0100
committerGitHub <noreply@github.com>2020-04-22 14:34:31 +0100
commit82d8b1dd1f9712e6fe29da671b079c646a663a48 (patch)
treebec16cf4fb85247aa7d45d4be71de89078483d38 /synapse/replication
parentfix changelog name (diff)
downloadsynapse-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')
-rw-r--r--synapse/replication/tcp/commands.py2
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 :]