Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit 27cd2f0

Browse files
committed
Fixed dict reference used to get 'conflicts' keys in 'packages-meta-ext-v2.json.gz' archives
1 parent 78149f1 commit 27cd2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aurweb/scripts/mkpkglists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def _main():
252252
makedepends = dependencies["makedepends"].all()
253253
checkdepends = dependencies["checkdepends"].all()
254254
optdepends = dependencies["optdepends"].all()
255-
conflicts = dependencies["optdepends"].all()
255+
conflicts = dependencies["conflicts"].all()
256256
provides = dependencies["provides"].all()
257257
replaces = dependencies["replaces"].all()
258258

0 commit comments

Comments
 (0)