Skip to content

Commit a274a79

Browse files
authored
Replace icon_url with icon_path in __init__.py.
In line with the documentation the correct key for the path of the icons folder in the launcher_entry is icon_path and not icon_url. See https://jupyter-server-proxy.readthedocs.io/en/latest/server-process.html
1 parent a937a03 commit a274a79

File tree

1 file changed

+2
-2
lines changed
  • contrib/template/{{cookiecutter.project_name}}/jupyter_{{cookiecutter.project_name}}_proxy

1 file changed

+2
-2
lines changed

contrib/template/{{cookiecutter.project_name}}/jupyter_{{cookiecutter.project_name}}_proxy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ def setup_{{cookiecutter.project_name}}():
1212
'environment': {},
1313
'launcher_entry': {
1414
'title': '{{cookiecutter.project_name}}',
15-
'icon_url': os.path.join(os.path.dirname(os.path.abspath(__file__)), 'icons', '{{cookiecutter.project_name}}.svg')
15+
'icon_path': os.path.join(os.path.dirname(os.path.abspath(__file__)), 'icons', '{{cookiecutter.project_name}}.svg')
1616
}
17-
}
17+
}

0 commit comments

Comments
 (0)