summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2010-03-12 22:20:52 +0000
committerJonny Lamb <jonny.lamb@collabora.co.uk>2010-03-12 22:21:04 +0000
commit831c7a20a4c516f6a2119f26158acf3223d2c328 (patch)
treebb5e61b55adfc74265ceb8e3ad7c1c38b053154b
parent5b19c4c6af0c08c2fd44521fa63c7d06c5494fb2 (diff)
muc: fix typo in call to GroupFlagsChanged
I should read how these methods work before using them. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r--butterfly/channel/muc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/butterfly/channel/muc.py b/butterfly/channel/muc.py
index d20ae4b..553834f 100644
--- a/butterfly/channel/muc.py
+++ b/butterfly/channel/muc.py
@@ -46,7 +46,7 @@ class ButterflyMucChannel(
self._conversation = conversation
papyon.event.ConversationEventInterface.__init__(self, self._conversation)
- self.GroupFlagsChanged(telepathy.CHANNEL_GROUP_FLAG_CAN_ADD, 1)
+ self.GroupFlagsChanged(telepathy.CHANNEL_GROUP_FLAG_CAN_ADD, 0)
# This is done in an idle so that classes which subclass this one
# can do stuff in their __init__ but will still benefit from this method