From 0e9c48d98b54393d0d9fe7c3d604bad79ccb33f2 Mon Sep 17 00:00:00 2001 From: Tagada <36127788+Tagadda@users.noreply.github.com> Date: Thu, 6 Oct 2022 23:20:19 +0200 Subject: [PATCH] typo --- tools/README-generator/make_readme.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/README-generator/make_readme.py b/tools/README-generator/make_readme.py index d9c03db4..cb65525f 100755 --- a/tools/README-generator/make_readme.py +++ b/tools/README-generator/make_readme.py @@ -72,11 +72,11 @@ def generate_READMEs(app_path: str): # TODO: Add url to the documentation... and actually create that documentation :D antifeatures = { a: antifeatures_list[a] for a in from_catalog.get('antifeatures', [])} for k, v in antifeatures.items(): - antifeatures[k]['title'] = value_for_lang(v['title'], lang_suffix) + antifeatures[k]['title'] = value_for_lang(v['title'], lang) if manifest.get("antifeatures", {}).get(k, None): - antifeatures[k]['description'] = value_for_lang(manifest.get("antifeatures", {}).get(k, None), lang_suffix) + antifeatures[k]['description'] = value_for_lang(manifest.get("antifeatures", {}).get(k, None), lang) else: - antifeatures[k]['description'] = value_for_lang(antifeatures[k]['description'], lang_suffix) + antifeatures[k]['description'] = value_for_lang(antifeatures[k]['description'], lang) out = template.render( lang=lang,