1
0
Fork 0

remove forgotten debug print

This commit is contained in:
OniriCorpe 2024-03-07 00:35:27 +01:00 committed by OniriCorpe
parent 221429766e
commit fb8ff3d0f4

View file

@ -35,11 +35,8 @@ def generate_READMEs(app_path: str):
catalog = toml.load(open(Path(os.path.abspath(__file__)).parent.parent.parent / "apps.toml")) catalog = toml.load(open(Path(os.path.abspath(__file__)).parent.parent.parent / "apps.toml"))
from_catalog = catalog.get(manifest['id'], {}) from_catalog = catalog.get(manifest['id'], {})
print(catalog)
print(from_catalog)
antifeatures_list = toml.load(open(Path(os.path.abspath(__file__)).parent.parent.parent / "antifeatures.toml")) antifeatures_list = toml.load(open(Path(os.path.abspath(__file__)).parent.parent.parent / "antifeatures.toml"))
print(antifeatures_list)
if not upstream and not (app_path / "doc" / "DISCLAIMER.md").exists(): if not upstream and not (app_path / "doc" / "DISCLAIMER.md").exists():
print( print(
@ -85,8 +82,6 @@ def generate_READMEs(app_path: str):
else: else:
antifeatures[k]['description'] = value_for_lang(antifeatures[k]['description'], lang) antifeatures[k]['description'] = value_for_lang(antifeatures[k]['description'], lang)
print(lang + "\n")
out = template.render( out = template.render(
lang=lang, lang=lang,
upstream=upstream, upstream=upstream,