Author: mtredinnick
Date: 2007-02-09 16:01:13 -0600 (Fri, 09 Feb 2007)
New Revision: 4465

Modified:
   django/trunk/django/template/__init__.py
Log:
Fixed #3468 -- fixed typo in VariableDoesNotExist.__str__. Pointed out by
Herbert Poul.


Modified: django/trunk/django/template/__init__.py
===================================================================
--- django/trunk/django/template/__init__.py    2007-02-09 13:47:36 UTC (rev 
4464)
+++ django/trunk/django/template/__init__.py    2007-02-09 22:01:13 UTC (rev 
4465)
@@ -123,7 +123,7 @@
         self.params = params
     
     def __str__(self):
-        return self.mgs % self.params
+        return self.msg % self.params
     
 class InvalidTemplateLibrary(Exception):
     pass


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to