Skip to content

Commit

Permalink
docs: ugh, typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jun 16, 2024
1 parent d604138 commit 17964c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coverage/lcovreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def line_hash(line: str) -> str:
"""Produce a hash of a source line for use in the LCOV file."""
# The LCOV file format requires MD5 as a fingerprint of the file. This is
# not a security use. Some security scanners raise alarms about the use of
# MD5 here, but it is a false positive. This is not a security concernt.
# MD5 here, but it is a false positive. This is not a security concern.
hashed = hashlib.md5(line.encode("utf-8")).digest()
return base64.b64encode(hashed).decode("ascii").rstrip("=")

Expand Down

0 comments on commit 17964c4

Please sign in to comment.