fix(mkpkglists): default keys to result[1]

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-10 13:40:19 -08:00
parent daef98080e
commit 6e344ce9da
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -21,7 +21,6 @@ on the following, right-hand side fields are added to each item.
import gzip import gzip
import os import os
import sys import sys
from collections import defaultdict from collections import defaultdict
from decimal import Decimal from decimal import Decimal
@ -83,7 +82,7 @@ def get_extended_dict(query: str):
for result in cursor.fetchall(): for result in cursor.fetchall():
pkgid = result[0] pkgid = result[0]
key = TYPE_MAP.get(result[1]) key = TYPE_MAP.get(result[1], result[1])
output = result[2] output = result[2]
if result[3]: if result[3]:
output += result[3] output += result[3]