Skip to content

Commit 4a0beb6

Browse files
committed
crash.py: fix typo on library
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
1 parent 1199224 commit 4a0beb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/workflows/lib/crash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def is_known_crash(self, log_content):
335335
# skipping blank lines.
336336
lines = [line.strip() for line in log_content.splitlines() if line.strip()]
337337
normalized = "\n".join(lines)
338-
log_hash = hashlib.md5(normalized.encode()).hexdigest(
338+
log_hash = hashlib.md5(normalized.encode()).hexdigest()
339339

340340
# Check if this hash is already in known crashes
341341
return log_hash in self.known_crashes

0 commit comments

Comments
 (0)