From dbf275a792203e28844fd1825527f192e26978e0 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Tue, 12 Jan 2021 11:11:59 -0500 Subject: [PATCH] Fixed regular expression for id-ing TL other event descriptions --- test/script/tskdbdiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/script/tskdbdiff.py b/test/script/tskdbdiff.py index 4df48dad0d..5907678372 100644 --- a/test/script/tskdbdiff.py +++ b/test/script/tskdbdiff.py @@ -638,7 +638,7 @@ def normalize_db_entry(line, files_table, vs_parts_table, vs_info_table, fs_info return line def cleanupEventDescription(description): - test = re.search("\D+:\d+", description) + test = re.search("^\D+:\d+$", description) if test is not None: return re.sub(":\d+", ":", description) else: