diff options
| author | 2019-02-22 17:47:25 +0000 | |
|---|---|---|
| committer | 2019-02-22 17:47:25 +0000 | |
| commit | dec34850717ba921d05560cd272da5ca657339a2 (patch) | |
| tree | c55cad78b383e6477a6289a506f5cdffa92f9f44 | |
| parent | Typo, 'ValuError' -> 'ValueError' (diff) | |
| signature | ||
Clear command Out text when there's nothing left to send
| -rw-r--r-- | modules/commands/outs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index 7120227f..e82537af 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -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 |
