diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-01-12 17:12:25 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-01-12 17:12:25 +0100 |
commit | 2aa799fc26bf7e573553b367b37b985ad4a91ccb (patch) | |
tree | 162afe112c110cc53075a08b1c15832f616b9fb0 | |
parent | 621048dede78e26bdf7431801948380499af4755 (diff) | |
download | poezio-2aa799fc26bf7e573553b367b37b985ad4a91ccb.tar.gz poezio-2aa799fc26bf7e573553b367b37b985ad4a91ccb.tar.bz2 poezio-2aa799fc26bf7e573553b367b37b985ad4a91ccb.tar.xz poezio-2aa799fc26bf7e573553b367b37b985ad4a91ccb.zip |
fixed #2100
-rw-r--r-- | src/room.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/room.py b/src/room.py index b1b77d1e..0c34b445 100644 --- a/src/room.py +++ b/src/room.py @@ -43,6 +43,7 @@ class Room(TextBuffer): Set the state of the room as not joined, so we can know if we can join it, send messages to it, etc """ + self.users = [] self.joined = False def log_message(self, txt, time, nickname): |