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 f6a82f7 commit 998389cCopy full SHA for 998389c
pyemma_tutorials/cli.py
@@ -20,8 +20,10 @@ def main():
20
21
_nglview_pip_installed_workaround()
22
23
- argv = ['--config=%s' % notebook_cfg, '--config=%s' % notebook_cfg_json]
24
- print('arguments:', argv)
+ # extend passed arguments with our config files
+ import sys
25
+ argv = sys.argv[1:] + ['--config=%s' % notebook_cfg, '--config=%s' % notebook_cfg_json]
26
+ print('invoking notebook server with arguments:', argv)
27
main_(argv=argv)
28
29
0 commit comments