mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 18:00:03 +00:00
Make generated passwords actionable again
Merge remote-tracking branch 'funkjedi/funkjedi-patch-1'
This commit is contained in:
commit
98ac4af4cf
1 changed files with 4 additions and 2 deletions
|
@ -52,10 +52,12 @@ def main(wf):
|
|||
|
||||
wf.add_item(title=result['password'],
|
||||
subtitle="Press Cmd+C to copy",
|
||||
arg=result['password'])
|
||||
arg=result['password'],
|
||||
valid=True)
|
||||
wf.add_item(title="Copy hashed versions",
|
||||
subtitle="Press Cmd+C to copy",
|
||||
arg="\n".join(hashed))
|
||||
arg="\n".join(hashed),
|
||||
valid=True)
|
||||
wf.send_feedback()
|
||||
|
||||
return 0
|
||||
|
|
Loading…
Reference in a new issue