From 30c2a6a8f567639b580d9efc144456a707af8948 Mon Sep 17 00:00:00 2001 From: Nathaniel Smith Date: Sat, 8 Nov 2014 20:10:37 -0500 Subject: [PATCH] science --- scripts/userlist.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/userlist.hy b/scripts/userlist.hy index b055be7..8dc7cde 100644 --- a/scripts/userlist.hy +++ b/scripts/userlist.hy @@ -34,9 +34,9 @@ (defn users [] (listdir "/home")) (def user-list (->> (users) + (filter (fn [f] (and (not (= f "ubuntu")) (not (= f "poetry"))))) sort-user-list reversed - (filter (fn [f] (and (not (= f "ubuntu")) (not (= f "poetry"))))) (map dir->html) (.join "\n")))