summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xcontrib/keepassx2pass.py2
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()
turn -o filenames back onBrian Mattern1-10/+6 2012-09-22bash completion - Fix UTF8, escape spaces, inverted commas, brackets, and amp...Jeffrey Ratcliffe1-14/+10 2012-09-21Better gpg key completion for `pass init`Brian Mattern1-2/+15 2012-09-21Append to COMPREPLY instead of inserting by indexBrian Mattern1-3/+1