From 704cadc5c097cdd80ed62c5d3389eaa47318fde4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?poljar=20=28Damir=20Jeli=C4=87=29?= Date: Thu, 25 Jan 2018 16:08:52 +0100 Subject: [PATCH] Disable the error message if we get a unhandled tag for now. --- weechat-matrix.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weechat-matrix.py b/weechat-matrix.py index ed0d0ca..a296a52 100644 --- a/weechat-matrix.py +++ b/weechat-matrix.py @@ -1381,7 +1381,8 @@ class MatrixHtmlParser(HTMLParser): self.text = "" self.attributes["fgcolor"] = color else: - W.prnt("", "Unhandled tag {t}".format(t=tag)) + # W.prnt("", "Unhandled tag {t}".format(t=tag)) + pass def handle_endtag(self, tag): if tag == "strong":