mutt/offlineimaplinux.py @ 34e21a05cebd

Update sub file
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Jul 2018 15:37:20 +0000
parents b86a3b6153f2
children 5e93682ea728
#!/usr/bin/python

import subprocess

def get_keychain_pass(account=None, command='pass'):
    full_command = "%s '%s'" % (command, account)
    output = subprocess.check_output(full_command, shell=True, stderr=subprocess.STDOUT)
    return output.splitlines()[0]