Open GoogleCodeExporter opened 8 years ago
Hello Nicolas,
The 404 is returned by twitter when you try to delete the status that does not
exist,
so its neither the bug in python-twitter nor in twitter.
Thanks,
Hameedullah Khan.
Original comment by hameed.u...@gmail.com
on 24 May 2009 at 7:46
Sorry!
My mistake, you said 400. So please ignore.
Original comment by hameed.u...@gmail.com
on 24 May 2009 at 7:52
Hi,
I have experienced the same problem and managed to solve it.
oauthtwitter.py:81
- if post_data:
+ if post_data is not None:
oauthtwitter.py:97
- if post_data:
+ if post_data is not None:
then post_data={} in DestroyStatus's _FetchUrl will go into if block properly.
Thanks,
Original comment by uglydog....@gmail.com
on 5 Sep 2010 at 9:20
Original issue reported on code.google.com by
nicodiet...@gmail.com
on 24 May 2009 at 1:22