File tree 4 files changed +7
-2
lines changed
azure/multiapi/storagev2/filedatalake/v2020_02_10
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ Handles multi-API versions of Azure Storage Data Plane originally from https://g
17
17
18
18
Change Log
19
19
----------
20
+ 0.6.2
21
+ +++++
22
+ * Fix import issue for filedatalake
23
+
20
24
0.6.1
21
25
+++++
22
26
* Support undelete filesystem
Original file line number Diff line number Diff line change 11
11
from ._shared .uploads import (
12
12
upload_data_chunks ,
13
13
DataLakeFileChunkUploader )
14
- from .. .core .exceptions import HttpResponseError
14
+ from azure .core .exceptions import HttpResponseError
15
15
16
16
17
17
def _any_conditions (modified_access_conditions = None , ** kwargs ): # pylint: disable=unused-argument
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ for service in blob fileshare filedatalake queue; do
50
50
51
51
namespace=azure.storage.$service
52
52
sed -i " s/from $namespace ./from ./g" $f
53
+ sed -i " s/from ...core.exceptions/from azure.core.exceptions/g" $f
53
54
done
54
55
55
56
done
Original file line number Diff line number Diff line change 35
35
36
36
setup (
37
37
name = 'azure-multiapi-storage' ,
38
- version = '0.6.1 ' ,
38
+ version = '0.6.2 ' ,
39
39
description = 'Microsoft Azure Storage Client Library for Python with multi API version support.' ,
40
40
long_description = open ('README.rst' , 'r' ).read (),
41
41
license = 'MIT' ,
You can’t perform that action at this time.
0 commit comments