Ticket #4369: manangement.diff

File manangement.diff, 732 bytes (added by Thomas Güttler <hv@…>, 17 years ago)
  • home/modarch/django/branches/unicode/django/core/management.py

     
    10531053                    e.add(opts, '"admin.list_display", if given, must be set to a list or tuple.')
    10541054                else:
    10551055                    for fn in opts.admin.list_display:
     1056                        if fn=="__unicode__":
     1057                            continue
    10561058                        try:
    10571059                            f = opts.get_field(fn)
    10581060                        except models.FieldDoesNotExist:
Back to Top