Revision: dfc27b16feb6
Author: Bart Thate <
bth...@gmail.com>
Date: Sun Aug 5 06:49:19 2012
Log: fix conference joining with password
http://code.google.com/p/gozerbot/source/detail?r=dfc27b16feb6
Modified:
/gozerbot/xmpp/core.py
=======================================
--- /gozerbot/xmpp/core.py Mon Jan 23 04:00:39 2012
+++ /gozerbot/xmpp/core.py Sun Aug 5 06:49:19 2012
@@ -86,7 +86,7 @@
try:
data = res[subelement]
if data:
- main += "<%s>%s</%s>" % (subelement, XMLescape(data),
subelement)
+ main += "<%s>%s</%s>" % (subelement,
XMLescape(str(data)), subelement)
gotsub = True
except KeyError: pass
if gotsub: main += "</%s>" % elem