diff options
| author | 2019-07-28 20:55:54 +0100 | |
|---|---|---|
| committer | 2019-07-28 20:55:54 +0100 | |
| commit | 793fc94ea369468b0238383b636f4aaa90b24050 (patch) | |
| tree | cc2b4da9c6c8082745e5f7ce09756396f0a40689 | |
| parent | handle 'CAP DEL' for something that wasn't advertised (diff) | |
| signature | ||
`source` should have ':' appended
| -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 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()) |
