Need to str() Hostmask objects in ParsedLine.format()

This commit is contained in:
jesopo 2019-02-28 16:22:17 +00:00
parent 9335ca5d16
commit 948c86adbc

View file

@ -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())