diff options
author | Roy Marples <roy@marples.name> | 2017-03-09 00:18:10 +0000 |
---|---|---|
committer | Lukas Fleischer <lfleischer@lfos.de> | 2017-08-10 13:15:55 +0000 |
commit | 67e2b69ec96a117b98c9028013ce0258574efe80 (patch) | |
tree | b15b6f1753bdd3b941ace3ce4cd1e0cf81885807 /filters/email-gravatar.py | |
parent | 7f7f91141ced1085dd2c6dbc5c65703d73b1b8c7 (diff) | |
download | cgit-67e2b69ec96a117b98c9028013ce0258574efe80.tar cgit-67e2b69ec96a117b98c9028013ce0258574efe80.tar.gz cgit-67e2b69ec96a117b98c9028013ce0258574efe80.zip |
filter: set environment variable PYTHONIOENCODING to utf-8
This allows different versions of Python to be used rather than
forcing version specific encoding in each script.
Signed-off-by: Roy Marples <roy@marples.name>
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'filters/email-gravatar.py')
-rwxr-xr-x | filters/email-gravatar.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/filters/email-gravatar.py b/filters/email-gravatar.py index d70440e..8b98471 100755 --- a/filters/email-gravatar.py +++ b/filters/email-gravatar.py @@ -30,9 +30,6 @@ 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() |