diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-06 17:20:59 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-06 17:20:59 +0100 |
commit | 1a57fcc4faed0c560832ea9d68f3803846a0b529 (patch) | |
tree | 6e8257e45b764f93bbd92defe17ab936e22a864e | |
parent | 16854c39fd857db8abce6378b247ac1dbf528fbd (diff) | |
download | poezio-1a57fcc4faed0c560832ea9d68f3803846a0b529.tar.gz poezio-1a57fcc4faed0c560832ea9d68f3803846a0b529.tar.bz2 poezio-1a57fcc4faed0c560832ea9d68f3803846a0b529.tar.xz poezio-1a57fcc4faed0c560832ea9d68f3803846a0b529.zip |
Actually, no, messages are in _text_buffer
-rw-r--r-- | src/core.py | 1 | ||||
-rw-r--r-- | src/tabs.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index ac8842e7..1f21e36d 100644 --- a/src/core.py +++ b/src/core.py @@ -16,6 +16,7 @@ import threading import traceback from datetime import datetime + from inspect import getargspec import common diff --git a/src/tabs.py b/src/tabs.py index afeb7c85..7e6c5dd2 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -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 |