At the end of multipart upload a POST request is correctly sent.
This last request doesn't contains the header about content-type.
Fix to be done is simply the following:
Source file
MultiPart.py
row 186
- headers = { "content-length": str(len(body)) }
+ headers = { "content-length": str(len(body)), 'content-type': 'application/xml' }