Fixed double space being appended after commands

This commit is contained in:
Asmageddon 2012-05-29 12:55:36 +02:00
parent 0a9a1db942
commit 76546ec176
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ class Legacy(BaseMode, component.Component):
# line.
for cmd in self.console._commands:
if cmd.startswith(line):
possible_matches.append(cmd + " ")
possible_matches.append(cmd)
line_prefix = ""
else: