Commit b1a29f47 authored by Antoine Millet's avatar Antoine Millet Committed by Antoine Millet
Browse files

Cast all remote tag values as unicode

parent fc8a771b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -187,5 +187,5 @@ class SRequestor(StaticRequestor):
                    if tag_value is None:
                        obj.set(tag_name, '#ERR')
                    else:
                        obj.set(tag_name, tag_value)
                        obj[tag_name].cached = tag_value  # Set the tag cache value
                        obj.set(tag_name, unicode(tag_value))
                        obj[tag_name].cached = unicode(tag_value)  # Set the tag cache value