7370 fix extra = in assignment

This commit is contained in:
William Schaefer 2021-03-04 14:24:32 -05:00
parent 7c157dad81
commit 3a663c57b0

View File

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