mutt/offlineimaplinux.py @ 6d2fdb8941e9

Move function
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Jul 2018 14:37:00 +0000
parents 4b486c5a8a54
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]