From 84ad3ee74ef5ee5d777239014bae1b28f54d9823 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 27 May 2016 04:07:06 +0200 Subject: [PATCH] Fix accidental typo --- infobot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infobot.py b/infobot.py index 7fe4863..0252660 100644 --- a/infobot.py +++ b/infobot.py @@ -69,11 +69,11 @@ class InfoBot(yaboli.Bot): elif "list" in options: if options["list"] is True or options["list"] == "all": - clients = self.room.s + clients = self.room.get_sessions() + [self.room.session] elif options["list"] == "people": clients = self.room.get_people() elif options["list"] == "bots": - clients = self.room.get_bots() + clients = self.room.get_bots() + [self.room.session] elif options["list"] == "lurkers": clients = self.room.get_lurkers()