mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Do not append space after the math. It ruins file path autocompletion
This commit is contained in:
parent
40a6b11a1b
commit
a750999e0e
1 changed files with 1 additions and 1 deletions
|
@ -543,7 +543,7 @@ class Legacy(BaseMode):
|
||||||
# the line.
|
# the line.
|
||||||
elif len(possible_matches) == 1:
|
elif len(possible_matches) == 1:
|
||||||
#We only want to print eventual colors or other control characters, not return them
|
#We only want to print eventual colors or other control characters, not return them
|
||||||
new_line = line_prefix + possible_matches[0] + " "
|
new_line = line_prefix + possible_matches[0]
|
||||||
new_line = format_utils.remove_formatting(new_line)
|
new_line = format_utils.remove_formatting(new_line)
|
||||||
return (new_line, len(new_line))
|
return (new_line, len(new_line))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue