Ticket #3468: variablenotfoundtypo.diff

File variablenotfoundtypo.diff, 414 bytes (added by Herbert Poul <herbert.poul@…>, 17 years ago)
  • django/template/__init__.py

     
    123123        self.params = params
    124124   
    125125    def __str__(self):
    126         return self.mgs % self.params
     126        return self.msg % self.params
    127127   
    128128class InvalidTemplateLibrary(Exception):
    129129    pass
Back to Top