Yoav Aviram
unread,Sep 6, 2009, 9:45:32 AM9/6/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twython Talk
Found the problem:
In both methods the image file was opened as ASCII file, which on
windows causes the problem.
I changed lines 1238 and 1259 to:
files = [("image", filename, open(filename,'rb').read())]
which solved the problem.