summaryrefslogtreecommitdiffstats
path: root/email/_mutt/offlineimap.py
blob: c358caae9b25b289da6357edae260b9159dea645 (plain) (blame)
1
2
3
4
5
#!/bin/python
from subprocess import check_output

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