Ticket #7887: empty-constants.diff

File empty-constants.diff, 633 bytes (added by Joost Cassee, 16 years ago)

7887-trunk-v1.diff

  • django/template/__init__.py

     
    487487                var, constant, i18n_constant = match.group("var", "constant", "i18n_constant")
    488488                if i18n_constant:
    489489                    var = '"%s"' %  _(i18n_constant.replace(r'\"', '"'))
    490                 elif constant:
     490                elif constant is not None:
    491491                    var = '"%s"' % constant.replace(r'\"', '"')
    492492                upto = match.end()
    493493                if var == None:
Back to Top