Skip to content

Commit

Permalink
Fixed typo in md5_kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
loganbibby committed Nov 25, 2024
1 parent 34bb1b2 commit 86986ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cacheops/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def __init__(self, s=None):
# this is for backwards compatibility
pyversion = sys.version_info
if (pyversion.major == 3 and pyversion.minor >= 9) or pyversion.major > 3:
md5_kwargs["usedforsecuirty"] = False
md5_kwargs["usedforsecurity"] = False

self.md5 = hashlib.md5(**md5_kwargs)
if s is not None:
Expand Down

0 comments on commit 86986ad

Please sign in to comment.