From d1a19f0d477a6249d8af9322317b8434b86260ea Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Wed, 13 Oct 2021 08:27:37 -0700 Subject: fix(email): bytes error. updated vendoring --- bin/email | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/email b/bin/email index 231ab6c..efe3906 100755 --- a/bin/email +++ b/bin/email @@ -51,7 +51,7 @@ def mail(input): if process(message): return message.as_bytes() - return input + return input.encode("utf-8") def send(account, to): input = sys.stdin.read() -- cgit v1.2.1