From 1cbc2ce31ba50630be60fdd7f9024fe103235ab7 Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 18 Jun 2019 17:56:20 +0100 Subject: [PATCH] Tags should not be appended to `pieces` now that they're counted separately --- src/IRCLine.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/IRCLine.py b/src/IRCLine.py index 9b028a17..e5b297a0 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -89,7 +89,6 @@ class ParsedLine(object): tags = "" if self.tags: tags = self._tag_str(self.tags) - pieces.append(self._tag_str(self.tags)) if self.source: pieces.append(str(self.source))