syntax error fix

pull/1/head
Raymond Yee 2011-11-06 14:41:14 -05:00
parent 26280b9c75
commit 02de354ae2
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ from django.contrib.auth.models import User
class UnglueitError(RuntimeError):
pass
class Premium(models.Model)
class Premium(models.Model):
PREMIUM_TYPES = ((u'00', u'Default'),(u'CU', u'Custom'))
type = = models.CharField(max_length=2, choices=PREMIUM_TYPES)
campaign = models.ForeignKey("Campaign", related_name="premiums", blank=True)