From aae64890d6342ff8646d826ce1cc7f6f5a0e34ff Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 1 Apr 2021 10:02:38 +0200 Subject: Revert "Fix gopass mime format for qute-pass userscript" This reverts commit 3284ec900e42b279bc3bc40593d7356ab1e3f9b0. Not needed as most gopass versions do this when stdout is a pipe, but it interfers with reading the username from the secret. See the discussion in #6323 for more detail, and #5972 for the original PR. (cherry picked from commit 9115ea4a4bbc4858d7fa0422cff59c29699fa53a) --- misc/userscripts/qute-pass | 2 -- 1 file changed, 2 deletions(-) diff --git a/misc/userscripts/qute-pass b/misc/userscripts/qute-pass index 42e21b528..cf65fe045 100755 --- a/misc/userscripts/qute-pass +++ b/misc/userscripts/qute-pass @@ -152,8 +152,6 @@ def _run_pass(pass_arguments): def pass_(path): - if arguments.mode == "gopass": - return _run_pass(['show', '-o', path]) return _run_pass(['show', path]) -- cgit v1.2.3-54-g00ecf