Remove debug output in do-list - pee - Pee a password manager;Pee - because you have to...
(HTM) git clone git://vernunftzentrum.de/pee.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 1b06ec6f3c1ccdfb4c3bee842a122b22bdce556c
(DIR) parent 528e64deb27c160f3c05febe313ab4da46550628
(HTM) Author: Christian Kellermann <ckeen@pestilenz.org>
Date: Tue, 12 Jan 2016 13:11:31 +0100
Remove debug output in do-list
Diffstat:
pee.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/pee.scm b/pee.scm
@@ -272,8 +272,8 @@
(for-each
(lambda (account-name)
(match-let (((user _ comment last-modified) (alist-ref account-name db equal?)))
- (printf "Account: ~a\tUser: ~a\tComment: ~a\tLast changed: ~a ~a~%"
- account-name user comment last-modified
+ (printf "Account: ~a\tUser: ~a\tComment: ~a\tLast changed: ~a~%"
+ account-name user comment
(time->string (seconds->local-time last-modified) "%Y-%m-%d %H:%M:%S"))))
accounts)))