diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-04-11 23:19:53 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-04-11 23:19:53 -0400 |
commit | 53ea8511b7bade0de0250efdee87b484cd01f06b (patch) | |
tree | f48ae09ed7896b9e60886fcbf4b95c590bf2c2c0 /bin | |
parent | f796821828d14f54db550d0a78dd6850d8d8bed0 (diff) |
pycucks btfo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/imappwd.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/imappwd.py b/bin/imappwd.py deleted file mode 100755 index d630b4f..0000000 --- a/bin/imappwd.py +++ /dev/null @@ -1,16 +0,0 @@ -import os.path -import subprocess -import distutils.spawn -home = os.path.expanduser("~") -def mailpasswd(acct): - acct = os.path.basename(acct) - path = "%s/.local/share/muttwizard/%s.gpg" % (home,acct) - if distutils.spawn.find_executable("gpg"): - GPG="gpg" - else: - GPG="gpg2" - args = [GPG, "--use-agent", "--quiet", "--batch", "-d", path] - try: - return subprocess.check_output(args).strip().decode('UTF-8') - except subprocess.CalledProcessError: - return "" |