From e7e622edd0e9c68ef22356e343d1a36e94aca87b Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Sun, 1 Oct 2023 19:03:38 +0200 Subject: [PATCH] typo --- qtconsole/rich_jupyter_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qtconsole/rich_jupyter_widget.py b/qtconsole/rich_jupyter_widget.py index f6ad52f9..879b3cfa 100644 --- a/qtconsole/rich_jupyter_widget.py +++ b/qtconsole/rich_jupyter_widget.py @@ -24,7 +24,7 @@ def _ensure_dir_exists(path, mode=0o755): """ensure that a directory exists - If it doesn't exist, try to create it and protect against a race condition + If it doesn't exists, try to create it and protect against a race condition if another process is doing the same. The default permissions are 755, which differ from os.makedirs default of 777.