Merge pull request #150 from correl/rpc_value_fixes

Updated XEP-0009 to handle unicode strings
This commit is contained in:
Lance Stout
2012-03-19 14:06:36 -07:00
2 changed files with 21 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ def _py2xml(*args):
boolean = ET.Element("{%s}boolean" % _namespace)
boolean.text = str(int(x))
val.append(boolean)
elif type(x) is str:
elif type(x) in (str, unicode):
string = ET.Element("{%s}string" % _namespace)
string.text = x
val.append(string)