# HG changeset patch # User Goffi # Date 1279282514 -28800 # Node ID 7201851d9aed86ce3d3df48cceec6687343ce5a3 # Parent d998adb62d1aec561572ccedf3059490976bb28c plugin tarot, plugin MUC: removed print which were causing error when printing unicode string diff -r d998adb62d1a -r 7201851d9aed plugins/plugin_misc_tarot.py --- a/plugins/plugin_misc_tarot.py Fri Jul 16 20:14:01 2010 +0800 +++ b/plugins/plugin_misc_tarot.py Fri Jul 16 20:15:14 2010 +0800 @@ -562,7 +562,6 @@ def card_game_cmd(self, mess_elt, profile): - print "\n\nCARD GAME command received (profile=%s): %s" % (profile, mess_elt.toXml()) from_jid = jid.JID(mess_elt['from']) room_jid = jid.JID(from_jid.userhost()) game_elt = mess_elt.firstChildElement() diff -r d998adb62d1a -r 7201851d9aed plugins/plugin_xep_0045.py --- a/plugins/plugin_xep_0045.py Fri Jul 16 20:14:01 2010 +0800 +++ b/plugins/plugin_xep_0045.py Fri Jul 16 20:15:14 2010 +0800 @@ -90,7 +90,6 @@ def __room_joined(self, room, profile): """Called when the user is in the requested room""" - print "room joined (profile = %s)" % profile room_jid = room.roomIdentifier+'@'+room.service self.clients[profile].joined_rooms[room_jid] = room self.host.bridge.roomJoined(room.roomIdentifier, room.service, [user.nick for user in room.roster.values()], room.nick, profile)