Skip to content
Snippets Groups Projects
Commit 81a0eabe authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix bug: argument in print_real_text is a list, not a string

parent f77d2840
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ def add_new_line(self, contact_name, tim, kind, show, message):
message = message + '\n'
if tag_msg:
self.history_textview.print_real_text(message, tag_msg)
self.history_textview.print_real_text(message, [tag_msg])
else:
self.history_textview.print_real_text(message)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment