]> granicus.if.org Git - cgit/commitdiff
email-gravatar.py: fix UTF-8
authorChristian Hesse <mail@eworm.de>
Tue, 14 Jan 2014 10:11:23 +0000 (11:11 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 14 Jan 2014 12:55:35 +0000 (13:55 +0100)
filters/email-gravatar.py

index f90b87de3183ddb05ed6767c828de59cef03bd0a..5d08ea8693be62330e6ff0ffc4fb6dd482a3a6a1 100755 (executable)
@@ -20,6 +20,7 @@
 
 import sys
 import hashlib
+import codecs
 
 email = sys.argv[1].lower().strip()
 if email[0] == '<':
@@ -29,6 +30,9 @@ if email[-1] == '>':
 
 page = sys.argv[2]
 
+sys.stdin = codecs.getreader("utf-8")(sys.stdin.detach())
+sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach())
+
 md5 = hashlib.md5(email.encode()).hexdigest()
 text = sys.stdin.read().strip()