# HG changeset patch # User Atul Varma # Date 1207340543 25200 # Node ID 094102bd9529a2573cd770121d1f0fabe7d2c361 # Parent 052bf8a07b76cada5241b3dbef6cb8f01a143cd3 Fixed a bug whereby the published status of a persona couldn't be set to 'unpublished'. diff -r 052bf8a07b76 -r 094102bd9529 personasbackend/personas/models.py --- a/personasbackend/personas/models.py Fri Apr 04 13:19:11 2008 -0700 +++ b/personasbackend/personas/models.py Fri Apr 04 13:22:23 2008 -0700 @@ -446,7 +446,7 @@ null=False, ) - MAX_STATUS_LENGTH = 10 + MAX_STATUS_LENGTH = 20 status = models.CharField( max_length=MAX_STATUS_LENGTH,