typo
This commit is contained in:
parent
d18060726c
commit
0361a0d604
1 changed files with 3 additions and 3 deletions
|
@ -72,11 +72,11 @@ def generate_READMEs(app_path: str):
|
||||||
# TODO: Add url to the documentation... and actually create that documentation :D
|
# TODO: Add url to the documentation... and actually create that documentation :D
|
||||||
antifeatures = { a: antifeatures_list[a] for a in from_catalog.get('antifeatures', [])}
|
antifeatures = { a: antifeatures_list[a] for a in from_catalog.get('antifeatures', [])}
|
||||||
for k, v in antifeatures.items():
|
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):
|
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:
|
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(
|
out = template.render(
|
||||||
lang=lang,
|
lang=lang,
|
||||||
|
|
Loading…
Reference in a new issue