Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2014-01-14 14:11:23 +0400
committerJason A. Donenfeld <Jason@zx2c4.com>2014-01-14 16:55:35 +0400
commit46176eca7f130a59813d160415a5ead58133f128 (patch)
treeb428c8d1ebc032a74b5bf3945b094db57e1a370e /filters
parent50287e7912129881a0157e4ae6dcc42310567c6e (diff)
email-gravatar.py: fix UTF-8
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/email-gravatar.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/filters/email-gravatar.py b/filters/email-gravatar.py
index f90b87d..5d08ea8 100755
--- a/filters/email-gravatar.py
+++ b/filters/email-gravatar.py
@@ -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()