summaryrefslogtreecommitdiff
path: root/poezio/mam.py
diff options
context:
space:
mode:
authorMadhur Garg <madhurgarg96@gmail.com>2019-08-21 03:06:41 +0530
committerMadhur Garg <madhurgarg96@gmail.com>2019-08-22 00:54:25 +0530
commitb01c7965519dadb5e0c566db3da340648276744b (patch)
treeede6c40b741c881599c44a0fe47be917ff415dfd /poezio/mam.py
parente3c1ac4033b3f9f2888e494aa6ab459a2e4c52c2 (diff)
downloadpoezio-b01c7965519dadb5e0c566db3da340648276744b.tar.gz
poezio-b01c7965519dadb5e0c566db3da340648276744b.tar.bz2
poezio-b01c7965519dadb5e0c566db3da340648276744b.tar.xz
poezio-b01c7965519dadb5e0c566db3da340648276744b.zip
Corrected indentation and coding style.
Diffstat (limited to 'poezio/mam.py')
-rw-r--r--poezio/mam.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/poezio/mam.py b/poezio/mam.py
index 4c8f3309..d928a735 100644
--- a/poezio/mam.py
+++ b/poezio/mam.py
@@ -153,14 +153,13 @@ def mam_scroll(tab):
end = end.replace(tzinfo=tzone).astimezone(tz=timezone.utc)
end = end.replace(tzinfo=None)
end = datetime.strftime(end, '%Y-%m-%dT%H:%M:%SZ')
- top = True
pos = tab.text_win.pos
tab.text_win.pos += tab.text_win.height - 1
if tab.text_win.pos + tab.text_win.height > len(tab.text_win.built_lines):
if before is None:
- asyncio.ensure_future(query(tab, remote_jid, top, end=end))
+ asyncio.ensure_future(query(tab, remote_jid, top=True, end=end))
else:
- asyncio.ensure_future(query(tab, remote_jid, top, before=before))
+ asyncio.ensure_future(query(tab, remote_jid, top=True, before=before))
tab.query_id = 1
tab.text_win.pos = len(tab.text_win.built_lines) - tab.text_win.height
if tab.text_win.pos < 0: