From 80cdf1bb5c7e24e9ac03961fefea3554b8bf468c Mon Sep 17 00:00:00 2001 From: Lionel Dricot Date: Tue, 22 Mar 2022 09:07:37 +0100 Subject: [PATCH] small improv to version --- offpunk.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/offpunk.py b/offpunk.py index 787ab27..4ea845d 100755 --- a/offpunk.py +++ b/offpunk.py @@ -3063,7 +3063,10 @@ Marks are temporary until shutdown (not saved to disk).""" output += " - python-pil : " + has(_HAS_PIL) output += "\nFeatures :\n" - output += " - Render images (chafa|timg) : " + has(_RENDER_IMAGE) + if _NEW_CHAFA: + output += " - Render images (chafa or timg) : " + has(_RENDER_IMAGE) + else: + output += " - Render images (python-pil, chafa or timg) : " + has(_RENDER_IMAGE) output += " - Render HTML (bs4, readability) : " + has(_DO_HTML) output += " - Render Atom/RSS feeds (feedparser) : " + has(_DO_FEED) output += " - Connect to http/https (requests) : " + has(_DO_HTTP)