fix typo (use result of method, not method itself)

This commit is contained in:
git-o-bot 2016-04-29 15:01:50 +02:00
parent 5e1636237e
commit e0d25122bd
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ class Session(YowsupApp):
subject = utils.softToUni(group.getSubject())
self.groups[room] = Group(room, owner, subject, subjectOwner, self.backend, self.user)
self.groups[room].addParticipants(group.getParticipants, self.buddies, self.legacyName)
self.groups[room].addParticipants(group.getParticipants(), self.buddies, self.legacyName)
self.bot.send("You have been added to group: %s@%s (%s)"
% (self._shortenGroupId(room), subject, self.backend.spectrum_jid))