Skip to content

Commit

Permalink
Merge pull request #7878 from lresende/fix-error-message
Browse files Browse the repository at this point in the history
Fix error message during invalid extension install
  • Loading branch information
Steven Silvester committed Feb 15, 2020
2 parents 2763b5b + 3c0550f commit 94949ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyterlab/commands.py
Expand Up @@ -893,7 +893,7 @@ def link_package(self, path):
"""
path = _normalize_path(path)
if not osp.exists(path) or not osp.isdir(path):
msg = 'Can install "%s" only link local directories'
msg = 'Cannot install "%s" only link local directories'
raise ValueError(msg % path)

with TemporaryDirectory() as tempdir:
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab/labapp.py
Expand Up @@ -48,7 +48,7 @@
If you are building via the `jupyter lab build` command, you can disable
these options like so:
jupyter lab build --dev-mode=False --minimize=False
jupyter lab build --dev-build=False --minimize=False
You can also disable these options for all JupyterLab builds by adding these
lines to a Jupyter config file named `jupyter_config.py`:
Expand Down

0 comments on commit 94949ba

Please sign in to comment.