Version 1.2.1: Fixed i18n and failing test in Django 1.4

This commit is contained in:
Corey Oordt 2013-03-22 06:25:22 -05:00
parent b069bcf316
commit a232b8e6e3
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
__version_info__ = {
'major': 1,
'minor': 2,
'micro': 0,
'micro': 1,
'releaselevel': 'final',
'serial': 1
}

View file

@ -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>

View file

@ -5,7 +5,7 @@ import django
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