|
@@ -24,7 +24,7 @@ def with_error_handle(f):
|
|
def fmt_list(nicks):
|
|
def fmt_list(nicks):
|
|
if len(nicks) == 0:
|
|
if len(nicks) == 0:
|
|
return "No one in teamspeak!"
|
|
return "No one in teamspeak!"
|
|
- if len(nicks):
|
|
|
|
|
|
+ if len(nicks) == 1:
|
|
return ("Only " if random.randint(0, 1) == 0 else "Oops all ") + nicks[0]
|
|
return ("Only " if random.randint(0, 1) == 0 else "Oops all ") + nicks[0]
|
|
return "I see the following people: " + ", ".join(nicks)
|
|
return "I see the following people: " + ", ".join(nicks)
|
|
|
|
|