summaryrefslogtreecommitdiffstats
path: root/mutt/offlineimap.py
blob: 3bdc780f8fca53d73b5407d9638c5c3e74b135c6 (plain) (blame)
1
2
3
4
5
#!/usr/bin/env python2
from subprocess import check_output

def get_pass(account):
    return check_output("pass Email/" + account, shell=True).rstrip()