# HG changeset patch # User Steve Losh # Date 1532392656 0 # Node ID 5e93682ea728da3d10f7aaad81b84bb594e43033 # Parent ec4852a72664c4bc79f5912fd5f7db3d076efe01 train my stupid fuckin brain to touch the yubikey diff -r ec4852a72664 -r 5e93682ea728 mutt/offlineimaplinux.py --- a/mutt/offlineimaplinux.py Tue Jul 24 00:34:14 2018 +0000 +++ b/mutt/offlineimaplinux.py Tue Jul 24 00:37:36 2018 +0000 @@ -1,8 +1,9 @@ -#!/usr/bin/python +#!/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, stderr=subprocess.STDOUT) return output.splitlines()[0]