8000 Fixed a typo that caused an error in the generated scripts. · stackless-dev/stackless@8f412c7 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 8f412c7

Browse files
author
Anselm Kruis
committed
Fixed a typo that caused an error in the generated scripts.
1 parent ebac005 commit 8f412c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Stackless/Tools/gensum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
expected = "%s"
1111
fname = r"%s"
1212
print "expected digest", expected
13-
with file(fname", "rb") as f:
13+
with file(fname, "rb") as f:
1414
data = f.read()
1515
received = md5.md5(data).hexdigest()
1616
print ("matched" if received == expected else "NOT MATCHED!!")

0 commit comments

Comments
 (0)
0