Merge pull request #628 from dagwieers/patch-1

Spurious newline could corrupt payload
reviewable/pr18780/r1
Greg DeKoenigsberg 9 years ago
commit c8295f518f

@ -120,11 +120,10 @@ def main():
atexit.register(conn.close) atexit.register(conn.close)
remote_path = vmware_path(datastore, datacenter, dest) remote_path = vmware_path(datastore, datacenter, dest)
auth = base64.encodestring('%s:%s' % (login, password)) auth = base64.encodestring('%s:%s' % (login, password)).rstrip()
headers = { headers = {
"Content-Type": "application/octet-stream", "Content-Type": "application/octet-stream",
"Content-Length": str(len(data)), "Content-Length": str(len(data)),
"Accept": "text/plain",
"Authorization": "Basic %s" % auth, "Authorization": "Basic %s" % auth,
} }

Loading…
Cancel
Save