berinhard / model_mommy

No longer maintained, please migrate to model_bakery
http://model-bakery.readthedocs.org/
Other
903 stars 141 forks source link

Support for django.db.models.fields.TimeField #32

Closed berinhard closed 12 years ago

berinhard commented 13 years ago

I have a model like this:

from django.db import models

class MyModel(models.Model):
    slug = models.SlugField(max_length=100)
    duration = models.TimeField(_(u'Duração'))

But when I use model_mommy for this model, it gives me the following error message: TypeError: <class 'django.db.models.fields.TimeField'> is not supported by mommy.

bernardobarreto commented 12 years ago

see pull request #35