From 61d59d956ab6df73d06d48b7ecfeb6327448d283 Mon Sep 17 00:00:00 2001 From: khuxkm Date: Sat, 24 Nov 2018 03:48:22 -0500 Subject: [PATCH] Skip over user asm (broken thunix mirror :P) --- gen_tdp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gen_tdp b/gen_tdp index bc8b969..ee55a31 100755 --- a/gen_tdp +++ b/gen_tdp @@ -7,12 +7,14 @@ tdp["name"] = "tilde.team" tdp["url"] = "https://tilde.team" tdp["signup_url"] = tdp["url"]+"/signup" users = subprocess.check_output(["/usr/bin/members","team"]).decode('ascii').split() -tdp["user_count"] = len(users) +tdp["user_count"] = len(users)-1 tdp["want_users"] = True tdp["admin_email"] = "sudoers@tilde.team" tdp["description"] = "a digital community for socializing, learning, and making cool stuff, tilde.team is a shared system that provides a radically inclusive, non-commercial space for teaching, learning, practicing and enjoying the social medium of unix." tdpusers = [] for user in users: + if user=="asm": + continue tdpuser = dict(username=user) title = bs(requests.get("https://tilde.team/~{}".format(user)).text,"lxml").title if title is None: