Skip to content

Commit

Permalink
Version 1.2.1: Fixed i18n and failing test in Django 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Mar 22, 2013
1 parent b069bcf commit a232b8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion categories/__init__.py
@@ -1,7 +1,7 @@
__version_info__ = {
'major': 1,
'minor': 2,
'micro': 0,
'micro': 1,
'releaselevel': 'final',
'serial': 1
}
Expand Down
2 changes: 1 addition & 1 deletion categories/templates/categories/ul_tree.html
@@ -1,5 +1,5 @@
{% load category_tags %}{% spaceless %}
<ul><li><a href="{% url 'categories_tree_list' %}">Top</a>
<ul><li><a href="{% url categories_tree_list %}">Top</a>
{% for node,structure in path|tree_info %}
{% if structure.new_level %}<ul><li>
{% else %}</li><li>
Expand Down
2 changes: 1 addition & 1 deletion example/settings.py
Expand Up @@ -5,7 +5,7 @@

APP = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
PROJ_ROOT = os.path.abspath(os.path.dirname(__file__))
sys.path.append(APP)
sys.path.insert(0, APP)
DEBUG = True
TEMPLATE_DEBUG = DEBUG

Expand Down

0 comments on commit a232b8e

Please sign in to comment.