diff --git a/gen_stats b/gen_stats index 83226a5..33f2384 100755 --- a/gen_stats +++ b/gen_stats @@ -18,7 +18,7 @@ channels = [] for schannel in schannels: channel = dict(name=schannel.findall("channelname")[0].text,usercount=int(schannel.findall("usercount")[0].text)) channel["topic"] = schannel.findall("./channeltopic/topictext")[0].text if schannel.findall("./channeltopic/topictext")[0].text is not None else "No topic set" - if channel["name"]=="#sudoers": # no stat output for #sudoers! it's a sekrit club of the ~team sysadmins! + if channel["name"]=="#secret-sudoers": # no stat output for #secret-sudoers! it's a sekrit club of the ~team sysadmins! continue channels.append(channel) channels.sort(key=lambda x: x["name"].lower())