summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 7270208b..cafeabc4 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -260,7 +260,7 @@ class ChatTab(Tab):
for msg in self._room.messages[:-40:-1]:
if not msg:
continue
- txt = msg.txt
+ txt = msg.get('txt')
for char in char_we_dont_want:
txt = txt.replace(char, ' ')
for word in txt.split():