Skip to content

Commit b87d446

Browse files
committed
Update jupyter_server/services/contents/fileio.py
1 parent bd057ef commit b87d446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/services/contents/fileio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class FileManagerMixin(Configurable):
202202

203203
@contextmanager
204204
def open(self, os_path, *args, **kwargs):
205-
"""wrapper around open that turns permission errors into 403"""
205+
"""wrapper around io.open that turns permission errors into 403"""
206206
with self.perm_to_403(os_path):
207207
with io.open(os_path, *args, **kwargs) as f:
208208
yield f

0 commit comments

Comments
 (0)