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 ne
(u\'2\',)
You need to make the second element a 1-tuple, eg:
a = ('2',) b = 'z' new = a + (b,)