about summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/connusers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/connusers.py b/bin/connusers.py
index 26ab112..d2672f2 100755
--- a/bin/connusers.py
+++ b/bin/connusers.py
@@ -21,6 +21,10 @@ def checkconns():
         split = conns.split(' ')
         for conn in split:
             if conn != "" and conn != " " and conn != "root" and conn not in seen:
+                # this needs to be fixed. truncates long usernames
+                # resulting in broken links to their pages. thanks, ps(1)
+                if conn == "sarmonsi":
+                    conn = "sarmonsiill"
                 seen.add(conn)
                 conntable.write("<li><a href=\"https://"+ conn +".tilde.institute\">"+ conn +"</a></li>\n")