Issue
I have some object.ID-s which I try to store in the user session as tuple. When I add first one it works but tuple looks like (u'2',)
but when I try to add new one using mytuple = mytuple + new.id
got error can only concatenate tuple (not "unicode") to tuple
.
Solution
You need to make the second element a 1-tuple, eg:
a = ('2',)
b = 'z'
new = a + (b,)
Answered By - Jon Clements
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.