mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
fix
This commit is contained in:
parent
2e6fca968c
commit
4463592c7a
@ -428,7 +428,7 @@ class TskGuidUtils:
|
||||
ret_dict = {}
|
||||
for row in cursor:
|
||||
# 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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user