Skip to content

Commit 6315373

Browse files
committed
Updated hide_code with new path helpers.
1 parent ca73cc9 commit 6315373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hide_code/hide_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def setup_info():
204204
break
205205

206206
custom_js = ''
207-
with open(path.join(Utils.get_notebook_module_dir(), 'notebook','static','custom','custom.js'), 'r') as f:
207+
with open(path.join(Utils.get_notebook_module_dir(), 'static','custom','custom.js'), 'r') as f:
208208
for line in iter(f):
209209
if not line.startswith(' *') and not line.startswith('/'):
210210
custom_js = custom_js + line + ' '

0 commit comments

Comments
 (0)