From b2d26a1377efc709d13f5b2ac6d71f4cb0ab5b2e Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Mon, 26 Jan 2009 13:38:31 -0700 Subject: [PATCH] Fixed bad from attribute on messages. --- commitbot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/commitbot.py b/commitbot.py index 65f1d8e..4c48d20 100644 --- a/commitbot.py +++ b/commitbot.py @@ -52,7 +52,6 @@ class CommitBot(XMPPHandler): ltxt)) msg = domish.Element((None, 'message')) msg['to'] = self.room - msg['from'] = self.room + '/' + self.nick msg['type'] = 'groupchat' msg.addElement('body', content=''.join(text)) wrap = msg.addElement((NS_XHTML_IM, 'html'))