diff options
| author | 2019-02-23 21:33:04 +0000 | |
|---|---|---|
| committer | 2019-02-23 21:33:04 +0000 | |
| commit | 8c94bcf6caf0ae88b3a67d0a73389a7e60810e1c (patch) | |
| tree | 8d72b0760aef71da12403696e9acd387d288e4e0 /modules/commands | |
| parent | !raw needs to parse the line it's given in to an IRCParsedLine now (diff) | |
| signature | ||
Move utils.irc.IRCParsedLine to IRCLine.ParsedLine, improve truncation
mechanism, don't convert sent line from ParsedLine to text to ParsedLine for
line_handler handling
Diffstat (limited to 'modules/commands')
| -rw-r--r-- | modules/commands/outs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index e82537af..09d1c872 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -40,8 +40,8 @@ class Out(object): else: raise ValueError("Unknown command methd '%s'" % method) + line.truncate_marker = STR_MORE if line.truncated(): - line.end_replace(STR_MORE) self._text = "%s%s" % (STR_CONTINUED, line.truncated()) else: self._text = "" |
