Skip to content

Commit

Permalink
Updated hide_code with new path helpers.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirbs- committed Sep 21, 2016
1 parent ca73cc9 commit 6315373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hide_code/hide_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def setup_info():
break

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

0 comments on commit 6315373

Please sign in to comment.