Django

Code

Changeset 909

Show
Ignore:
Timestamp:
10/17/05 10:41:05 (3 years ago)
Author:
hugo
Message:

i18n: fixed a bug with the i18n template tag that crept in with the last merge - some imports where lost.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/i18n/django/core/template/defaulttags.py

    r869 r909  
    33from django.core.template import Node, NodeList, Template, Context, resolve_variable, resolve_variable_with_filters, get_filters_from_token, registered_filters 
    44from django.core.template import TemplateSyntaxError, VariableDoesNotExist, BLOCK_TAG_START, BLOCK_TAG_END, VARIABLE_TAG_START, VARIABLE_TAG_END, register_tag 
     5from django.utils import translation 
     6 
    57import sys 
     8import re 
    69 
    710class CommentNode(Node):