diff options
| author | 2019-06-18 18:14:04 +0100 | |
|---|---|---|
| committer | 2019-06-18 18:14:04 +0100 | |
| commit | c463fa20a45cf22c66ae1aeec106a75f6fcb5722 (patch) | |
| tree | 15183351d19034405eb0e1d7ef432c5692b8518f /src/IRCLine.py | |
| parent | Tags should not be appended to `pieces` now that they're counted separately (diff) | |
| signature | ||
`line_formatted` -> `valid` so tags don't cause us to subvert truncation
Diffstat (limited to 'src/IRCLine.py')
| -rw-r--r-- | src/IRCLine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCLine.py b/src/IRCLine.py index e5b297a0..f713eecd 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -131,7 +131,7 @@ class ParsedLine(object): valid = line_formatted[:valid_index] if tags_formatted: - valid = "%s %s" % (tags_formatted, line_formatted) + valid = "%s %s" % (tags_formatted, valid) overflow = line_formatted[valid_index:] return valid, overflow |
