I am trying to update my Profile info via python-twitter module.
>>> api = twitter.Api(username="username", password="password")
>>> user = api.GetUser(user="username")
>>> user.SetLocation('New Location')
The problem is that it is not getting updated and the documentation is unclear if there's another step I need to do - is there a "save" that I need to call or something like that?