diff options
| author | 2020-03-05 11:15:37 +0000 | |
|---|---|---|
| committer | 2020-03-05 11:15:37 +0000 | |
| commit | c0947b066d477ba85f94b6b0a33abc80ba3518a1 (patch) | |
| tree | fe326345b42aa411f7287b57a85b3af2a267195b /src | |
| parent | add a `flag` command spec type (diff) | |
| signature | ||
we don't need +=1 for "new arg space" because we're pushing on an existing arg
Diffstat (limited to 'src')
| -rw-r--r-- | src/IRCLine.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/IRCLine.py b/src/IRCLine.py index d6e31f3b..39fd86af 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -142,7 +142,6 @@ class SendableLine(ParsedLine): tags, line = self._format() n = len(line.encode("utf8")) # get length of current line n += self._margin # margin used for :hostmask - n += 1 # +1 for space on new arg if " " in arg and not " " in last_arg: n += 1 # +1 for colon on new arg n += extra_margin # used for things like (more ...) |
