Skip to content

Commit 3ee018e

Browse files
committed
Fixed missing encoding info in fileservice.py
1 parent a66051a commit 3ee018e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

azure-storage-file/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Version XX.XX.XX:
66
- Support for 2018-11-09 REST version. Please see our REST API documentation and blogs for information about the related added features.
77
- Added an option to get share stats in bytes.
8-
- Added support for List/Close File Handles APIs.
8+
- Added support for listing and closing file handles.
99

1010
## Version 1.4.0:
1111

azure-storage-file/azure/storage/file/fileservice.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# coding: utf-8
2+
13
# -------------------------------------------------------------------------
24
# Copyright (c) Microsoft Corporation. All rights reserved.
35
# Licensed under the MIT License. See License.txt in the project root for
@@ -1366,7 +1368,7 @@ def close_handles(self, share_name, directory_name=None, file_name=None, recursi
13661368
Returns a generator to close opened handles on a directory or a file under the specified share.
13671369
The generator will lazily follow the continuation tokens returned by
13681370
the service and stop when all handles have been closed.
1369-
The yielded values represent the number of handles that were closed.
1371+
The yielded values represent the number of handles that were closed in each transaction.
13701372
13711373
13721374
:param str share_name:

0 commit comments

Comments
 (0)