display account name, not user name when deleting entries - pee - Pee a passwor… | |
git clone git://vernunftzentrum.de/pee.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 9eebb7ec201f158d40f10e5a5f38903577998ef7 | |
parent ebacb381fa5bdd4fab0f9a095d0d8b399eed8ba0 | |
Author: Christian Kellermann <[email protected]> | |
Date: Sun, 10 Jan 2016 21:02:38 +0100 | |
display account name, not user name when deleting entries | |
Diffstat: | |
pee.scm | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/pee.scm b/pee.scm | |
@@ -277,7 +277,7 @@ | |
(print-without-password (cons account e)) | |
(cond ((ask-yes-or-no "Really delete account?") | |
(encrypt-file db-name (alist-delete account db equal?) p) | |
- (print "Entry '" (car e) "' deleted.")) | |
+ (print "Entry '" account "' deleted.")) | |
(else (print "Nothing done."))))) | |
(else (print "Error: Entry for '" account "' not found") | |
(exit 1)))) |