# HG changeset patch # User Lennard de Rijk # Date 1235856323 0 # Node ID cdbe6e86506cf3a54575d0b51efb90b5a46e8192 # Parent b5589e656ed167840fc3aeae135f9a992efdb171 StudentProposal content is now a TextProperty. This is necessary to allow more then 500 bytes of content. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r b5589e656ed1 -r cdbe6e86506c app/soc/models/student_proposal.py --- a/app/soc/models/student_proposal.py Sat Feb 28 21:12:20 2009 +0000 +++ b/app/soc/models/student_proposal.py Sat Feb 28 21:25:23 2009 +0000 @@ -50,7 +50,7 @@ ' 500 characters or less, plain text displayed publicly') #: Required field containing the content of the proposal. - content = db.StringProperty(required=True, multiline=True) + content = db.TextProperty(required=True) content.help_text = ugettext( 'This contains your actual proposal')