Re: Getting error 500 when using jquery/ajax
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 |

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home