mirror of
https://github.com/Hopiu/django.git
synced 2026-04-25 17:24:49 +00:00
Fixed #3468 -- fixed typo in VariableDoesNotExist.__str__. Pointed out by
Herbert Poul. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4465 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9ba27afce0
commit
9b129b8f3f
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ class VariableDoesNotExist(Exception):
|
|||
self.params = params
|
||||
|
||||
def __str__(self):
|
||||
return self.mgs % self.params
|
||||
return self.msg % self.params
|
||||
|
||||
class InvalidTemplateLibrary(Exception):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue