aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-13 08:27:37 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-13 08:27:37 -0700
commitd1a19f0d477a6249d8af9322317b8434b86260ea (patch)
tree59e49fc95018bb9d09e4a76a012f6f06ae345c67 /bin
parent7d7af85919bbd352bb7dc0b5751b3684f8f0a8e4 (diff)
fix(email): bytes error. updated vendoring
Diffstat (limited to 'bin')
-rwxr-xr-xbin/email2
1 files changed, 1 insertions, 1 deletions
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()