File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
sdk/storage/azure-storage-blob Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Python 3.12.
14
14
- Fixed an issue where authentication errors could raise ` AttributeError ` instead of ` ClientAuthenticationError ` when
15
15
using async OAuth credentials.
16
16
- Fixed an typing issue which incorrectly typed the ` readinto ` API. The correct input type is ` IO[bytes] ` .
17
+ - Fixed a typo in the initialization of ` completion_time ` for the ` CopyProperties ` model.
17
18
18
19
## 12.19.0 (2023-11-07)
19
20
Original file line number Diff line number Diff line change @@ -651,7 +651,7 @@ def __init__(self, **kwargs):
651
651
self .source = kwargs .get ('x-ms-copy-source' )
652
652
self .status = get_enum_value (kwargs .get ('x-ms-copy-status' ))
653
653
self .progress = kwargs .get ('x-ms-copy-progress' )
654
- self .completion_time = kwargs .get ('x-ms-copy-completion_time ' )
654
+ self .completion_time = kwargs .get ('x-ms-copy-completion-time ' )
655
655
self .status_description = kwargs .get ('x-ms-copy-status-description' )
656
656
self .incremental_copy = kwargs .get ('x-ms-incremental-copy' )
657
657
self .destination_snapshot = kwargs .get ('x-ms-copy-destination-snapshot' )
You can’t perform that action at this time.
0 commit comments