mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 09:56:05 -04:00
Another go at fixing one-word commands (#7326)
I messed this up last time I tried (#7239 / e13c6c7
).
This commit is contained in:
parent
7c7618c7e3
commit
82d8b1dd1f
3 changed files with 44 additions and 1 deletions
|
@ -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 :]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue