Fix page blob uploading from python 2.6

This commit is contained in:
Yue Zhang
2015-07-01 17:58:17 +08:00
parent f0ff6463bb
commit 767bd9bdbb
+1 -1
View File
@@ -2889,7 +2889,7 @@ def PutPageBlob(url, data):
bufSize = pageEnd - start
buf = bytearray(bufSize)
buf[0 : contentSize] = data[start : end]
ret = restutil.HttpPut(url, buf, {
ret = restutil.HttpPut(url, buffer(buf), {
"x-ms-date" : timestamp,
"x-ms-range" : "bytes={0}-{1}".format(start, pageEnd - 1),
"x-ms-page-write" : "update",