summaryrefslogtreecommitdiff
path: root/poezio/text_buffer.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/text_buffer.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/text_buffer.py')
-rw-r--r--poezio/text_buffer.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/poezio/text_buffer.py b/poezio/text_buffer.py
index 64bc17f6..3d1f8266 100644
--- a/poezio/text_buffer.py
+++ b/poezio/text_buffer.py
@@ -169,12 +169,12 @@ class TextBuffer:
nick_size = config.get('max_nick_length')
for window in self._windows: # make the associated windows
# build the lines from the new message
- if top == True:
+ if top:
nb = window.build_message_at_the_top(
- msg,
- history=history,
- timestamp=show_timestamps,
- nick_size=nick_size)
+ msg,
+ history=history,
+ timestamp=show_timestamps,
+ nick_size=nick_size)
if ret_val == 0:
ret_val = nb
if window.pos != 0: