game.creator_target_board[int(spot)] = "X"
Exception Type: TypeError at /target_spot/1/0/ Exception Value: 'unicode' object does not support item assignment So your trouble is that game.creator_target_board[int(spot)] is an immutable str object. so you have to rethink your strategy. create new str object or handle it completely different. -- Raphael http://develissimo.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

