diff options
| author | 2019-02-28 16:22:17 +0000 | |
|---|---|---|
| committer | 2019-02-28 16:22:17 +0000 | |
| commit | 948c86adbcc7d9127d4e136dbb51045291043b2c (patch) | |
| tree | bcc6d3a7a937b120ee47872a10cf25703395907b | |
| parent | Treat both `a` and `a=` as None for message-tags (diff) | |
| signature | ||
Need to str() Hostmask objects in ParsedLine.format()
| -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 c7df9ce5..4fd2a74d 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -62,7 +62,7 @@ class ParsedLine(object): pieces.append(self._tag_str(self.tags)) if self.prefix: - pieces.append(self.prefix) + pieces.append(str(self.prefix)) pieces.append(self.command.upper()) |
