pdb

Simple password manager
Log | Files | Refs

commit c3c5f69bb1b7c7cd4d419a8b896b121c5c9d14b7
parent ea3e69749b1cd9f8aa29d8d5f7600f941f5cfe8a
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed, 11 Feb 2015 19:49:55 +0000

Print a newline after passwords to make mbsync happy

Diffstat:
src/actions.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/actions.lua b/src/actions.lua @@ -7,7 +7,7 @@ function _M.get( db, name ) return "No such password." end - io.stdout:write( db[ name ] ) + io.stdout:write( db[ name ] .. "\n" ) end function _M.add( db, name )