浏览代码

utf-8 decoding

tags/v3.1
Luke Smith 5 年前
父节点
当前提交
3c41844e63
找不到此签名对应的密钥 GPG 密钥 ID: 4C50B54A911F6252
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      credentials/imappwd.py

+ 1
- 1
credentials/imappwd.py 查看文件

@@ -6,6 +6,6 @@ def mailpasswd(acct):
path = "%s/.config/mutt/credentials/%s.gpg" % (home,acct)
args = ["gpg2", "--use-agent", "--quiet", "--batch", "-d", path]
try:
return subprocess.check_output(args).strip()
return subprocess.check_output(args).strip().decode('UTF-8')
except subprocess.CalledProcessError:
return ""

正在加载...
取消
保存