retronews

a featureful fork of the luke8086/retronews hn+lobste.rs tui
Log | Files | Refs | README | LICENSE

commit 302b424a394880e0096476dcda769d7388705f6d
parent 5ec56f9632e89c283d2e1056df238b63e6cccae9
Author: luke8086 <55237178+luke8086@users.noreply.github.com>
Date:   Wed, 14 Jun 2023 12:46:54 +0000

Update group labels

Diffstat:
Mretronews.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/retronews.py b/retronews.py @@ -171,8 +171,8 @@ class Group: GROUP_TABS: list[Group] = [ - Group(label="Front Page", fetch=lambda db, page: hn_fetch_threads("news", page)), - Group(label="New", fetch=lambda db, page: hn_fetch_new_threads(page)), + Group(label="Front HN", fetch=lambda db, page: hn_fetch_threads("news", page)), + Group(label="New HN", fetch=lambda db, page: hn_fetch_new_threads(page)), Group(label="Ask HN", fetch=lambda db, page: hn_fetch_threads("ask", page)), Group(label="Show HN", fetch=lambda db, page: hn_fetch_threads("show", page)), Group(label="Starred", fetch=lambda db, page: group_fetch_starred_threads(db, page)),