From 4401bdcc33bbd8da4a7fbe46114844e34cf3934b Mon Sep 17 00:00:00 2001 From: Nathaniel Smith Date: Sun, 28 Dec 2014 18:49:15 -0800 Subject: [PATCH] replace list --- scripts/userlist.hy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/userlist.hy b/scripts/userlist.hy index 9fddff8..80f0e02 100644 --- a/scripts/userlist.hy +++ b/scripts/userlist.hy @@ -37,8 +37,8 @@ (apply sorted [usernames] {"key" modify-time})) (defn user-generator [] (->> (listdir "/home") - (filter (fn [f] (and (not (= f "ubuntu")) (not (= f "poetry"))))))) - ;list)) + (filter (fn [f] (and (not (= f "ubuntu")) (not (= f "poetry"))))) + list)) (def user-list (->> (user-generator) sort-user-list