From 2121644904493dfa9e6709a1425c0517da9b7d4f Mon Sep 17 00:00:00 2001 From: Andrea Giudiceandrea Date: Sat, 20 Apr 2024 17:53:31 +0200 Subject: [PATCH] [DB Manager] Avoid printing HTML code in the Python console --- python/plugins/db_manager/info_viewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/db_manager/info_viewer.py b/python/plugins/db_manager/info_viewer.py index d691c8815a0..67d0c673097 100644 --- a/python/plugins/db_manager/info_viewer.py +++ b/python/plugins/db_manager/info_viewer.py @@ -160,5 +160,5 @@ class InfoViewer(QTextBrowser): """ % html - print(">>>>>\n", html, "\n<<<<<<") + # print(">>>>>\n", html, "\n<<<<<<") return QTextBrowser.setHtml(self, html)