diff --git a/gajim/gtk/conversation/rows/info.py b/gajim/gtk/conversation/rows/info.py
index f6f5420fc67d5a3be7944a8d710d1f518c45e387..f5531ab027e28b442952efa54d9ce61bb0c4ab75 100644
--- a/gajim/gtk/conversation/rows/info.py
+++ b/gajim/gtk/conversation/rows/info.py
@@ -43,6 +43,7 @@ def __init__(self, account, text):
         self.grid.attach(timestamp_widget, 2, 0, 1, 1)
 
         self._label = SimpleLabel()
+        self._label.set_text(text)
 
         self.grid.attach(self._label, 1, 0, 1, 1)
         self.show_all()
diff --git a/gajim/gtk/conversation/rows/widgets.py b/gajim/gtk/conversation/rows/widgets.py
index 3856ead0f628b52a3f39727ee611d433dcd57127..ddf622c21190890f0438a015152b75d6b7c10d70 100644
--- a/gajim/gtk/conversation/rows/widgets.py
+++ b/gajim/gtk/conversation/rows/widgets.py
@@ -13,6 +13,7 @@
 # along with Gajim. If not, see <http://www.gnu.org/licenses/>.
 
 from gi.repository import Gtk
+from gi.repository import Pango
 
 
 class SimpleLabel(Gtk.Label):