diff options
author | Madhusudan.C.S | 2011-01-17 05:34:26 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-01-17 05:34:26 +0530 |
commit | 71a5518c7c4345df8dfa2b7349026bcf7eb268f2 (patch) | |
tree | 786d5da44679ab4f34416ec0b7e2c2fbbdbd0916 | |
parent | 29cb5ad367dc0e5997ff7af72db2fc60ac02d5a2 (diff) | |
download | pytask-71a5518c7c4345df8dfa2b7349026bcf7eb268f2.tar.gz pytask-71a5518c7c4345df8dfa2b7349026bcf7eb268f2.tar.bz2 pytask-71a5518c7c4345df8dfa2b7349026bcf7eb268f2.zip |
Fix style issue in the profile model.
-rwxr-xr-x | pytask/profile/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pytask/profile/models.py b/pytask/profile/models.py index de26c5c..f92b5e2 100755 --- a/pytask/profile/models.py +++ b/pytask/profile/models.py @@ -32,9 +32,9 @@ class Profile(models.Model): 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) |