mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Give sensible error message if using the install-nbextension command to try to install multiple extensions.
This commit is contained in:
parent
0ee28ed816
commit
b27739ec65
@ -319,7 +319,9 @@ class NBExtensionApp(BaseIPythonApplication):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def install_extensions(self):
|
def install_extensions(self):
|
||||||
install_nbextension(self.extra_args,
|
if len(self.extra_args)>1:
|
||||||
|
raise ValueError("only one nbextension allowed at a time. Call multiple times to install multiple extensions.")
|
||||||
|
install_nbextension(self.extra_args[0],
|
||||||
overwrite=self.overwrite,
|
overwrite=self.overwrite,
|
||||||
symlink=self.symlink,
|
symlink=self.symlink,
|
||||||
verbose=self.verbose,
|
verbose=self.verbose,
|
||||||
|
Loading…
Reference in New Issue
Block a user