From 793fc94ea369468b0238383b636f4aaa90b24050 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 28 Jul 2019 20:55:54 +0100 Subject: [PATCH] `source` should have ':' appended --- src/IRCLine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IRCLine.py b/src/IRCLine.py index 6150f646..e4f5462a 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -92,7 +92,7 @@ class ParsedLine(object): tags = self._tag_str(self.tags) if self.source: - pieces.append(str(self.source)) + pieces.append(":%s" % str(self.source)) pieces.append(self.command.upper())