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 1295d38 commit f0f627dCopy full SHA for f0f627d
notebook/services/contents/filemanager.py
@@ -607,5 +607,6 @@ def _validate_path(path):
607
608
for char in invalid_chars:
609
if char in path:
610
- raise web.HTTPError(400, u"Path '{}' contains invalid characters {} relative to its platform. "
611
- u"Please edit the path and re-submit the request.".format(path, invalid_chars))
+ raise web.HTTPError(400, u"Path '{}' contains characters that are invalid for the filesystem. "
+ u"Path names on this filesystem cannot contain any of the following "
612
+ u"characters: {}".format(path, invalid_chars))
0 commit comments