Use a FileField instead of an ImageField in the admin_widgets test so that folks without PIL can still run the tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2008-08-08 23:06:28 +00:00
parent b30ee21dc1
commit 6185093351
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class Band(models.Model):
class Album(models.Model):
band = models.ForeignKey(Band)
name = models.CharField(max_length=100)
cover_art = models.ImageField(upload_to='albums')
cover_art = models.FileField(upload_to='albums')
def __unicode__(self):
return self.name