diff options
author | Luke <luke@lukesmith.xyz> | 2018-02-13 13:00:48 -0700 |
---|---|---|
committer | Luke <luke@lukesmith.xyz> | 2018-02-13 13:00:48 -0700 |
commit | a4dc0e041e69269442a32c9210b2f247a55bdd87 (patch) | |
tree | 2831a25640a274566b163b1ad2962c1dfeda7a7e /credentials/imappwd.py | |
parent | ac1f56dd18cf4b6ce71c4cd477d2deaa6a57df98 (diff) |
switch to gpg2 as default
Diffstat (limited to 'credentials/imappwd.py')
-rwxr-xr-x | credentials/imappwd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/credentials/imappwd.py b/credentials/imappwd.py index 8570a5f..0a74804 100755 --- a/credentials/imappwd.py +++ b/credentials/imappwd.py @@ -4,7 +4,7 @@ home = os.path.expanduser("~") def mailpasswd(acct): acct = os.path.basename(acct) path = "%s/.config/mutt/credentials/%s.gpg" % (home,acct) - args = ["gpg", "--use-agent", "--quiet", "--batch", "-d", path] + args = ["gpg2", "--use-agent", "--quiet", "--batch", "-d", path] try: return subprocess.check_output(args).strip() except subprocess.CalledProcessError: |