diff --git a/notebook/utils.py b/notebook/utils.py index f7b6380dfe..8b3ca4b7b9 100644 --- a/notebook/utils.py +++ b/notebook/utils.py @@ -253,7 +253,7 @@ def to_os_path(path, root=''): parts = path.strip('/').split('/') parts = [p for p in parts if p != ''] # remove duplicate splits path = os.path.join(root, *parts) - return path + return os.path.normpath(path) def to_api_path(os_path, root=''): """Convert a filesystem path to an API path