We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 087f43f commit c862f10Copy full SHA for c862f10
Python.adoc
@@ -35,7 +35,7 @@ import hashlib
35
def md5_digest(s):
36
"""Calculates an MD5 digest of a string."""
37
m = hashlib.md5()
38
- m.update("s")
+ m.update(s)
39
return m.hexdigest()
40
----
41
0 commit comments