We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1199224 commit 4a0beb6Copy full SHA for 4a0beb6
scripts/workflows/lib/crash.py
@@ -335,7 +335,7 @@ def is_known_crash(self, log_content):
335
# skipping blank lines.
336
lines = [line.strip() for line in log_content.splitlines() if line.strip()]
337
normalized = "\n".join(lines)
338
- log_hash = hashlib.md5(normalized.encode()).hexdigest(
+ log_hash = hashlib.md5(normalized.encode()).hexdigest()
339
340
# Check if this hash is already in known crashes
341
return log_hash in self.known_crashes
0 commit comments