mirror of
https://github.com/YunoHost/yunodevtools.git
synced 2024-09-03 20:16:19 +02:00
Fix a bug introduced with antifeatures
This commit is contained in:
parent
f99b497ffd
commit
b7c5e8958a
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ def build_app_dict(app, infos):
|
|||
"subtags": infos.get("subtags", []),
|
||||
"potential_alternative_to": infos.get("potential_alternative_to", []),
|
||||
"antifeatures": list(
|
||||
set(manifest.get("antifeatures", []) + infos.get("antifeatures", []))
|
||||
set(list(manifest.get("antifeatures", {}).keys()) + infos.get("antifeatures", []))
|
||||
),
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue