7370 add missing return statement

This commit is contained in:
William Schaefer 2021-03-04 16:46:18 -05:00
parent 9106868299
commit fa18fc5b4f

View File

@ -676,6 +676,7 @@ def normalize_db_entry(line, files_table, vs_parts_table, vs_info_table, fs_info
elif source_obj_id == 'NULL':
fields_list[3] = "NULL"
newLine = ('INSERT INTO "tsk_os_account_attributes" VALUES(' + ','.join(fields_list[1:]) + ');') # remove id
return newLine
else:
return line