1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 10:22:56 +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