Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2006-04-27 19:25:02 (GMT)
committer Dan Williams <dcbw@redhat.com>2006-04-27 19:25:02 (GMT)
commit243aac6be26e764433d12a69a144ee51950a157d (patch)
tree9a6328741d8290b488b9673c86397f879214ce11 /chat
parent36e2abf147f6ba0c9049abf5fae831839156e2f1 (diff)
Fix group message notification
Diffstat (limited to 'chat')
-rwxr-xr-xchat/chat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/chat.py b/chat/chat.py
index 0df3a11..590b65f 100755
--- a/chat/chat.py
+++ b/chat/chat.py
@@ -382,7 +382,7 @@ class GroupChat(Chat):
def recv_message(self, buddy, msg):
self._insert_rich_message(buddy.nick(), msg)
- self._parent.notify_new_message(self, None)
+ self._controller.notify_new_message(self, None)
def _recv_group_message(self, msg):
buddy = self.find_buddy_by_address(msg['addr'])