Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cjsheets committed Aug 20, 2018
1 parent d7a3b0b commit 690d3e6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion rtd_dropdown/base.html
Expand Up @@ -87,7 +87,6 @@
<ul class="tocbase current">
{% set navlevel = 1 %}
{% for nav_item in nav %}
{{ ("for nav_item: " ~ nav_item.title) | debug }}
{% include 'nav.html' %}
{% endfor %}
</ul>
Expand Down
1 change: 0 additions & 1 deletion rtd_dropdown/nav.html
Expand Up @@ -36,7 +36,6 @@
<ul class="navtree subnav-l{{ navlevel }} current">
{%- set navlevel = navlevel + 1%}
{%- for nav_item in nav_item.children %}
{{ ("nav_item child: " + nav_item.title) | debug }}
{% include 'nav.html' %}
{% endfor %}
{%- set navlevel = navlevel - 1%}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '1.0.0'
VERSION = '1.0.1'

with open("requirements.txt") as data:
install_requires = [
Expand Down

0 comments on commit 690d3e6

Please sign in to comment.