1
0
mirror of https://github.com/django/django.git synced 2025-03-16 20:30:45 +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:
Malcolm Tredinnick 2007-02-09 22:01:13 +00:00
parent 9ba27afce0
commit 9b129b8f3f

View File

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