Skip to content

Commit

Permalink
fix python3 print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
naveenarun committed Sep 16, 2016
1 parent 53926f1 commit 0e60a18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashes/md5.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def md5me(testString):
def test():
assert md5me("") == "d41d8cd98f00b204e9800998ecf8427e"
assert md5me("The quick brown fox jumps over the lazy dog") == "9e107d9d372bb6826bd81d3542a419d6"
print "Success."
print("Success.")


if __name__ == "__main__":
Expand Down

0 comments on commit 0e60a18

Please sign in to comment.