txtv

Swiss text tv in the terminal
git clone https://git.in0rdr.ch/txtv.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

commit a48d7c290a4a8839572e99990399f96e1a5cf2ee
parent a81c276bee008edcef5254eb3ab2147e8b1c0371
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date:   Mon,  1 Apr 2019 20:15:07 +0200

changed listing width

Diffstat:
Mtxtv/txtv.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/txtv/txtv.py b/txtv/txtv.py @@ -125,7 +125,7 @@ def cmd_list(**kwargs): for art in articles: if art: title, page_nbr = art - print(title.ljust(38, '.'), Fore.BLUE + str(page_nbr) + Fore.RESET) + print(title.ljust(36, '.'), Fore.BLUE + str(page_nbr) + Fore.RESET) def cmd_page(match, state=None, **kwargs):