瀏覽代碼

utf-8 decoding

tags/v3.1
Luke Smith 5 年之前
父節點
當前提交
3c41844e63
沒有發現已知的金鑰在資料庫的簽署中 GPG Key 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 ""

Loading…
取消
儲存