Skip to content

Commit c862f10

Browse files
committed
Oops, wrong quote
1 parent 087f43f commit c862f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import hashlib
3535
def md5_digest(s):
3636
"""Calculates an MD5 digest of a string."""
3737
m = hashlib.md5()
38-
m.update("s")
38+
m.update(s)
3939
return m.hexdigest()
4040
----
4141

0 commit comments

Comments
 (0)