Another go at fixing one-word commands (#7326)

I messed this up last time I tried (#7239 / e13c6c7).
This commit is contained in:
Richard van der Hoff 2020-04-22 14:34:31 +01:00 committed by GitHub
parent 7c7618c7e3
commit 82d8b1dd1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 1 deletions

View file

@ -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 :]