summaryrefslogtreecommitdiff
path: root/poezio/mam.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/mam.py')
-rw-r--r--poezio/mam.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/poezio/mam.py b/poezio/mam.py
index c352ac7f..92899284 100644
--- a/poezio/mam.py
+++ b/poezio/mam.py
@@ -49,17 +49,17 @@ def add_line(tab, text_buffer: TextBuffer, text: str, str_time: str, nick: str,
nick = nick.split('/')[0]
color = get_theme().COLOR_OWN_NICK
text_buffer.add_message(
- text,
- time,
- nick,
- color,
- True, # History
- None, # User
- False, # Highlight
- top, #Top
- None, # Identifier
- None, # str_time
- None, # Jid
+ txt=text,
+ time=time,
+ nickname=nick,
+ nick_color=color,
+ history=True,
+ user=None,
+ highlight=False,
+ top=top,
+ identifier=None,
+ str_time=None,
+ jid=None,
)
async def query(tab, remote_jid, top, start=None, end=None, before=None):