Actually, no, messages are in _text_buffer
This commit is contained in:
parent
16854c39fd
commit
1a57fcc4fa
2 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import threading
|
|||
import traceback
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
from inspect import getargspec
|
||||
|
||||
import common
|
||||
|
|
|
@ -394,7 +394,7 @@ class ChatTab(Tab):
|
|||
self.input.refresh()
|
||||
|
||||
def get_conversation_messages(self):
|
||||
return self.messages
|
||||
return self._text_buffer.messages
|
||||
|
||||
def command_say(self, line):
|
||||
raise NotImplementedError
|
||||
|
|
Loading…
Reference in a new issue