mutt/offlineimaplinux.py @ 6f429206629f
Fucking broken garbage hg-git is hosed for https mercurial urls and I have no idea why
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 02 Feb 2019 15:58:34 -0500 |
parents |
25d490edffa6 |
children |
(none) |
#!/usr/bin/env python3
import subprocess
def get_keychain_pass(account=None, command='pass'):
print("\nBOOP\n")
full_command = "%s '%s'" % (command, account)
output = subprocess.check_output(full_command, shell=True)
password = output.splitlines()[0]
return password