We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5395d commit 5033aa8Copy full SHA for 5033aa8
jupyter_server/services/contents/fileio.py
@@ -202,7 +202,7 @@ class FileManagerMixin(Configurable):
202
203
@contextmanager
204
def open(self, os_path, *args, **kwargs):
205
- """wrapper around open that turns permission errors into 403"""
+ """wrapper around io.open that turns permission errors into 403"""
206
with self.perm_to_403(os_path):
207
with io.open(os_path, *args, **kwargs) as f:
208
yield f
0 commit comments