From 0f066ab1ffbd2ca5cd217c13c05beabffa871cd7 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 1 Apr 2016 02:02:49 +0100 Subject: add_message_to_text_buffer was never used with its time and history arguments. --- poezio/core/core.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/poezio/core/core.py b/poezio/core/core.py index f32099f1..ab234367 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -1647,16 +1647,15 @@ class Core(object): tabs.Tab.height - 2, 0) self.left_tab_win = None - def add_message_to_text_buffer(self, buff, txt, - time=None, nickname=None, history=None): + def add_message_to_text_buffer(self, buff, txt, nickname=None): """ Add the message to the room if possible, else, add it to the Info window (in the Info tab of the info window in the RosterTab) """ if not buff: self.information('Trying to add a message in no room: %s' % txt, 'Error') - else: - buff.add_message(txt, time, nickname, history=history) + return + buff.add_message(txt, nickname=nickname) def full_screen_redraw(self): """ -- cgit v1.2.3