mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Fixed double space being appended after commands
This commit is contained in:
parent
0a9a1db942
commit
76546ec176
1 changed files with 1 additions and 1 deletions
|
@ -595,7 +595,7 @@ class Legacy(BaseMode, component.Component):
|
||||||
# line.
|
# line.
|
||||||
for cmd in self.console._commands:
|
for cmd in self.console._commands:
|
||||||
if cmd.startswith(line):
|
if cmd.startswith(line):
|
||||||
possible_matches.append(cmd + " ")
|
possible_matches.append(cmd)
|
||||||
|
|
||||||
line_prefix = ""
|
line_prefix = ""
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue