Clear command Out text when there's nothing left to send
This commit is contained in:
parent
9408cc9487
commit
dec3485071
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ class Out(object):
|
|||
if line.truncated():
|
||||
line.end_replace(STR_MORE)
|
||||
self._text = "%s%s" % (STR_CONTINUED, line.truncated())
|
||||
else:
|
||||
self._text = ""
|
||||
|
||||
def set_prefix(self, prefix):
|
||||
self.module_name = prefix
|
||||
|
|
Loading…
Reference in a new issue