Skip to content

Commit

Permalink
Allow using ~/path.to.password_cmd. Fixes #144
Browse files Browse the repository at this point in the history
  • Loading branch information
firecat53 committed May 12, 2023
1 parent bb2d79d commit bc10779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keepmenu/keepmenu.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_databases():
except KeyError:
autotype = None
try:
cmd = args_dict[f'password_cmd_{idx}']
cmd = expanduser(args_dict[f'password_cmd_{idx}'])
res = subprocess.run(shlex.split(cmd),
capture_output=True,
check=False,
Expand Down

0 comments on commit bc10779

Please sign in to comment.