From 569efdec36d7e2200f90e23572c2a88127ec5022 Mon Sep 17 00:00:00 2001 From: Madhur Garg Date: Wed, 12 Jun 2019 04:55:02 +0530 Subject: Fixed some mistakes in coding style --- poezio/tabs/basetabs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/tabs') diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index 1de73052..c3f1fbe1 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -826,7 +826,7 @@ class ChatTab(Tab): new_date = new_date.replace(year=datetime.now().year, month=datetime.now().month, day=datetime.now().day) except ValueError: pass - if '-' in args[1]: + if args[1].startswith('-'): if ' ' in args[1]: new_args = args[1].split(' ') new_args[0] = new_args[0].strip('-') @@ -845,7 +845,7 @@ class ChatTab(Tab): self.text_win.scroll_down(int(scroll_len)) self.core.refresh_window() return - elif '+' in args[1]: + elif args[1].startswith('+'): scroll_len = args[1].strip('+') if scroll_len.isdigit(): self.text_win.scroll_up(int(scroll_len)) -- cgit v1.2.3