1
0
Fork 0
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:
Knut Ahlers 2018-03-21 11:10:13 +01:00
commit 98ac4af4cf
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -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