txtv

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

commit 0736f2d63ce2194a237500cf9181e684aa897f21
parent 10d430cfa9ce2e93f90cc54140d82ded723e8808
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date:   Wed, 10 Apr 2019 11:05:27 +0200

realigned listing with text

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

diff --git a/txtv/txtv.py b/txtv/txtv.py @@ -132,7 +132,7 @@ def cmd_list(**kwargs): for art in articles: if art: title, page_nbr = art - out += title.ljust(36, '.') + Fore.BLUE + str(page_nbr) + Fore.RESET + '\n' + out += title.ljust(37, '.') + Fore.BLUE + str(page_nbr) + Fore.RESET + '\n' return out