From bcdf72ee068c9bf5c67896c440b3f335b4cbf9ee Mon Sep 17 00:00:00 2001 From: Etoh Date: Tue, 11 Jun 2013 21:35:47 +0200 Subject: [PATCH] Fix to showUserList in client.py --- syncplay/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 5d929b8..0974452 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -579,7 +579,7 @@ class SyncplayUserlist(object): rooms[user.room].append(user) if(self.currentUser.room not in rooms): rooms[self.currentUser.room] = [] - rooms[user.room].append(self.currentUser) + rooms[self.currentUser.room].append(self.currentUser) self.ui.showUserList(self.currentUser, rooms)