Author: brosner
Date: 2008-07-09 13:59:42 -0500 (Wed, 09 Jul 2008)
New Revision: 7875
Modified:
django/branches/newforms-admin/django/contrib/admin/options.py
Log:
newforms-admin: Fixed #7692 -- Fixed a syntax error in
django/contrib/admin/options.py, my bad. Thanks jwmayfield for keeping me in
check.
Modified: django/branches/newforms-admin/django/contrib/admin/options.py
===================================================================
--- django/branches/newforms-admin/django/contrib/admin/options.py
2008-07-09 18:29:47 UTC (rev 7874)
+++ django/branches/newforms-admin/django/contrib/admin/options.py
2008-07-09 18:59:42 UTC (rev 7875)
@@ -428,7 +428,8 @@
for formset in formsets:
for added_object in formset.new_objects:
change_message.append(_('Added %(name)s "%(object)s".')
- % {'name':
added_object._meta.verbose_name, % 'object': added_object})
+ % {'name':
added_object._meta.verbose_name,
+ 'object': added_object})
for changed_object, changed_fields in formset.changed_objects:
change_message.append(_('Changed %(list)s for %(name)s
"%(object)s".')
% {'list':
get_text_list(changed_fields, _('and')),
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---