# HG changeset patch # User Pawel Solyga # Date 1236200070 0 # Node ID 51b5bc38522c95f7107e064192bda1e09d7bda97 # Parent 495171ad94c01b26d2550e53d43f460c91f15ea1 Fix too long line in soc.models.user module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed diff -r 495171ad94c0 -r 51b5bc38522c app/soc/models/user.py --- a/app/soc/models/user.py Wed Mar 04 20:50:27 2009 +0000 +++ b/app/soc/models/user.py Wed Mar 04 20:54:30 2009 +0000 @@ -109,7 +109,8 @@ #: field storing the status of this User. #: valid: Is just that, it's a valid User. - #: invalid: This means that this User has been excluded from using the website. + #: invalid: This means that this User has been excluded + #: from using the website. status = db.StringProperty(required=True, default='valid', choices=['valid', 'invalid'],) status.help_text = ugettext(