# HG changeset patch # User Pawel Solyga # Date 1236187775 0 # Node ID 276e8e72c87450824ee22b7ef7aa09a321b81439 # Parent 425dccf4f6524aa2f5a6cc35bcb89d2b27c0e9de Fix too long lines in soc.models.org_app module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed diff -r 425dccf4f652 -r 276e8e72c874 app/soc/models/org_app.py --- a/app/soc/models/org_app.py Wed Mar 04 17:28:02 2009 +0000 +++ b/app/soc/models/org_app.py Wed Mar 04 17:29:35 2009 +0000 @@ -53,8 +53,9 @@ license_name = db.StringProperty(required=True, choices=licenses.LICENSES, verbose_name=ugettext('What license does your organization use?')) - license_name.example_text=ugettext('See ' - ' the official list.') + license_name.example_text = ugettext('See ' + ' ' + 'the official list.') ideas = db.LinkProperty(required=True, verbose_name=ugettext( 'What is the URL to the ideas list of your organization?')) @@ -96,9 +97,10 @@ ' with the project after the program concludes?')) continued_contribs.help_text = contrib_disappears.help_text - #: field storing whether the 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.) + #: field storing whether the 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.) agreed_to_admin_agreement = db.BooleanProperty(required=False, default=False, verbose_name=ugettext('I Agree to the Admin Agreement')) agreed_to_admin_agreement.help_text = ugettext(