This commit is contained in:
Greg DiCristofaro 2021-05-12 16:47:38 -04:00
parent 2e6fca968c
commit 4463592c7a

View File

@ -428,7 +428,7 @@ class TskGuidUtils:
ret_dict = {} ret_dict = {}
for row in cursor: for row in cursor:
# concatenate value rows with delimiter filtering out any null values. # concatenate value rows with delimiter filtering out any null values.
ret_dict[row[0]] = delim.join(filter(lambda col: col is not None, [str(col) for col in row[1:]])) ret_dict[row[0]] = delim.join([str(col) for col in filter(lambda col: col is not None, row[1:])])
return ret_dict return ret_dict