Skip to content

Commit 2d09dc6

Browse files
committed
PREFIX required even when public is false apparently
1 parent dccaf48 commit 2d09dc6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

appyter/profiles/default/filters/url_for.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ def url_for(directory, public=False, **kwargs):
2727
raise
2828
except:
2929
url = join_url(config['PREFIX'], url)
30+
else:
31+
url = join_url(config['PREFIX'], url)
32+
3033
#
3134
if config['MODE'] == 'magic':
3235
# jupyter notebook magic mode

0 commit comments

Comments
 (0)