diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/keepassx2pass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/keepassx2pass.py b/contrib/keepassx2pass.py index 86e2f11..fe7d2d6 100755 --- a/contrib/keepassx2pass.py +++ b/contrib/keepassx2pass.py @@ -13,7 +13,7 @@ def path_for(element, path=''): def import_entry(element, path=''): """ Import new password entry to password-store using pass insert command """ - proc = Popen(['pass', 'insert', path_for(element, path)], + proc = Popen(['pass', 'insert', '--force', path_for(element, path)], stdin=PIPE, stdout=PIPE) proc.communicate(element.find('password').text + "\n") proc.wait() |