Kaydet (Commit) 347fe5ce authored tarafından Georg Brandl's avatar Georg Brandl

Encoding fix.

üst f0a0d14c
...@@ -80,7 +80,7 @@ def MDFilter(): ...@@ -80,7 +80,7 @@ def MDFilter():
mdContext = md5() mdContext = md5()
while 1: while 1:
data = sys.stdin.read(16) data = sys.stdin.read(16).encode()
if not data: if not data:
break break
mdContext.update(data) mdContext.update(data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment