Console: Fix prefixed space for tab completing commands

The join command adds space if 'p' is empty string.
This commit is contained in:
Calum Lind 2012-03-26 19:05:54 +01:00
parent f19caf69e0
commit 931b8aec71

View file

@ -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)