Ticket #6313: 6313.diff

File 6313.diff, 599 bytes (added by Thejaswi Puthraya, 16 years ago)

fixed the typo

  • django/newforms/models.py

     
    228228        opts = ModelFormOptions(attrs.get('Meta', None))
    229229        attrs['_meta'] = opts
    230230
    231         # Don't allow more than one Meta model defenition in bases. The fields
     231        # Don't allow more than one Meta model definition in bases. The fields
    232232        # would be generated correctly, but the save method won't deal with
    233233        # more than one object.
    234234        base_models = []
Back to Top