diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2016-01-30 00:42:49 -0500 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2016-01-30 00:42:49 -0500 |
| commit | a9bfb11eba8bd89b57fd890392641b366e0b0859 (patch) | |
| tree | 1e03eabfbd094a5687179b499d9ef9ba14798899 /offlineimap/.offlineimap.py | |
| parent | ba6824d123dc50ec39099e47c76f6c0c16d296fb (diff) | |
| download | dotfiles-a9bfb11eba8bd89b57fd890392641b366e0b0859.tar.gz | |
Add offlineimap
Diffstat (limited to 'offlineimap/.offlineimap.py')
| -rw-r--r-- | offlineimap/.offlineimap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/offlineimap/.offlineimap.py b/offlineimap/.offlineimap.py new file mode 100644 index 0000000..d733bdb --- /dev/null +++ b/offlineimap/.offlineimap.py @@ -0,0 +1,5 @@ +from subprocess import check_output + + +def get_pass(name): + return check_output(["pass", "show", name]).split("\n")[0].strip() |
