# HG changeset patch # User Madhusudan.C.S # Date 1295222666 -19800 # Node ID 92062f38d2c0c5d0b92a654c78b98b062935cb59 # Parent a13ea00c1a3f1baf92d76fc836d9d92bf10ae418 Fix style issue in the profile model. diff -r a13ea00c1a3f -r 92062f38d2c0 pytask/profile/models.py --- a/pytask/profile/models.py Mon Jan 17 05:33:59 2011 +0530 +++ b/pytask/profile/models.py Mon Jan 17 05:34:26 2011 +0530 @@ -32,9 +32,9 @@ user = models.ForeignKey(User, unique = True) - role = models.CharField(max_length=2, - choices=ROLES_CHOICES, - default=u"Contributor") + role = models.CharField(max_length=255, + choices=ROLES_CHOICES, + default=u"Contributor") pynts = models.PositiveSmallIntegerField(default=0)