7327 remove extra space for consistancy in output

This commit is contained in:
William Schaefer 2021-02-19 13:15:07 -05:00
parent ea48e69943
commit 413cc4b71f

View File

@ -586,7 +586,7 @@ def normalize_db_entry(line, files_table, vs_parts_table, vs_info_table, fs_info
parent_path = re.sub('regripper\-[0-9]+\-full', 'regripper-full', parent_path)
return newLine + path + ', ' + parent_path + ', ' + ', '.join(fields_list[2:]) + ');'
else:
return newLine + '"OBJECT IDS OMITTED" , ' + ', '.join(fields_list[2:]) + ');' #omit parent object id and object id when we cant annonymize them
return newLine + '"OBJECT IDS OMITTED", ' + ', '.join(fields_list[2:]) + ');' #omit parent object id and object id when we cant annonymize them
# remove time-based information, ie Test_6/11/14 -> Test
elif report_index:
fields_list[1] = "AutopsyTestCase"