Skip to content

Commit

Permalink
Remove debug printing - oops!
Browse files Browse the repository at this point in the history
  • Loading branch information
djungelorm committed Sep 21, 2017
1 parent fa1271d commit 4826fc5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions sphinx_tabs/tabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,19 +230,16 @@ def add_assets(app, pagename, templatename, context, doctree):
if 'script_files' not in context:
context['script_files'] = script_files
else:
print context['script_files']
# Insert script files after
i = 0
for path in context['script_files']:
i += 1
if path.endswith('jquery.js'):
break
print i
context['script_files'] = \
context['script_files'][:i] + \
script_files + \
context['script_files'][i:]
print context['script_files']
else:
for path in css_files:
if 'css_files' in context and path in context['css_files']:
Expand Down

0 comments on commit 4826fc5

Please sign in to comment.