aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2019-07-28 20:55:54 +0100
committerGravatar jesopo2019-07-28 20:55:54 +0100
commit793fc94ea369468b0238383b636f4aaa90b24050 (patch)
treecc2b4da9c6c8082745e5f7ce09756396f0a40689 /src
parenthandle 'CAP DEL' for something that wasn't advertised (diff)
signature
`source` should have ':' appended
Diffstat (limited to 'src')
-rw-r--r--src/IRCLine.py2
1 files changed, 1 insertions, 1 deletions
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())