Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--sugar/chat/Chat.py2
-rw-r--r--sugar/chat/GroupChat.py1
3 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4c4290c..de1f1e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([Sugar],[0.14],[],[sugar])
+AC_INIT([Sugar],[0.15],[],[sugar])
AC_PREREQ([2.59])
diff --git a/sugar/chat/Chat.py b/sugar/chat/Chat.py
index 51f24f9..826c4cf 100644
--- a/sugar/chat/Chat.py
+++ b/sugar/chat/Chat.py
@@ -244,6 +244,8 @@ class Chat(gtk.VBox):
return
if self._stream_writer:
self._stream_writer.write(self.serialize_message(text))
+ else:
+ print 'Cannot send message, there is no stream writer'
owner = PresenceService.get_instance().get_owner()
if owner:
self._insert_rich_message(owner, text)
diff --git a/sugar/chat/GroupChat.py b/sugar/chat/GroupChat.py
index a2a3352..41ee5bd 100644
--- a/sugar/chat/GroupChat.py
+++ b/sugar/chat/GroupChat.py
@@ -16,4 +16,5 @@ class GroupChat(Chat):
self._stream_writer = self._group_stream.new_writer()
def _group_recv_message(self, address, msg):
+ logging.debug('Group chat received from %s message %s' % (address, msg))
self.recv_message(msg)