From a750999e0e702cf57a053777c19d19b34f62c877 Mon Sep 17 00:00:00 2001 From: Asmageddon Date: Tue, 8 May 2012 11:25:40 +0200 Subject: [PATCH] Do not append space after the math. It ruins file path autocompletion --- deluge/ui/console/modes/legacy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/legacy.py b/deluge/ui/console/modes/legacy.py index 2eaa3d412..6235a6fe9 100644 --- a/deluge/ui/console/modes/legacy.py +++ b/deluge/ui/console/modes/legacy.py @@ -543,7 +543,7 @@ class Legacy(BaseMode): # the line. elif len(possible_matches) == 1: #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) return (new_line, len(new_line)) else: