# HG changeset patch # User Lennard de Rijk # Date 1233161321 0 # Node ID 16e412c9b442b0aca5329a70c209c3c9cad27a1e # Parent 46907a9b0b8bd775f2e46efd4a171a9aa9c2ae80 Removed default value for agrees_to_tos in soc/models/user.py Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r 46907a9b0b8b -r 16e412c9b442 app/soc/models/user.py --- a/app/soc/models/user.py Wed Jan 28 16:40:16 2009 +0000 +++ b/app/soc/models/user.py Wed Jan 28 16:48:41 2009 +0000 @@ -94,7 +94,7 @@ #: field storing whether User has agreed to the site-wide Terms of Service. #: (Not a required field because the Terms of Service might not be present #: when the first User profile is created when bootstrapping the site.) - agrees_to_tos = db.BooleanProperty(default=False, + agrees_to_tos = db.BooleanProperty( verbose_name=ugettext('Agrees to ToS')) agrees_to_tos.help_text = ugettext( 'Indicates that the user agrees to the site-wide Terms of Service.')