mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Console: Fix prefixed space for tab completing commands
The join command adds space if 'p' is empty string.
This commit is contained in:
parent
f19caf69e0
commit
931b8aec71
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ Please use commands from the command line, eg:\n
|
|||
self.write(match)
|
||||
else:
|
||||
p = " ".join(line.split(" ")[:-1])
|
||||
new_line = " ".join([p, os.path.commonprefix(possible_matches)])
|
||||
new_line = " ".join([p, os.path.commonprefix(possible_matches)]).lstrip()
|
||||
if len(new_line) > len(line):
|
||||
line = new_line
|
||||
cursor = len(line)
|
||||
|
|
Loading…
Add table
Reference in a new issue