taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit 78be16209bb05af96eb9dc20da15b517c61bc5fd
parent e76157eb9d87f6222e83765f073ee93bf26bc200
Author: MS <ms@taler.net>
Date:   Thu,  4 Feb 2021 15:20:14 +0100

include SV / ES articles

Diffstat:
Mtalermerchantdemos/blog/content.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/talermerchantdemos/blog/content.py b/talermerchantdemos/blog/content.py @@ -133,7 +133,7 @@ def add_from_html(resource_name, lang): for l in listdir(resource_filename("talermerchantdemos", "blog/articles/")): # Filter by active languages, otherwise this takes quite a while to load... - if l in { "en", "de" }: + if l in { "en", "de", "sv", "es" }: LOGGER.info("importing %s" % l) for a in listdir(resource_filename ("talermerchantdemos", "blog/articles/" + l)): add_from_html("blog/articles/" + l + "/" + a, l)