Fix too long line in soc.models.user module.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 20:54:30 +0000
changeset 1650 51b5bc38522c
parent 1649 495171ad94c0
child 1651 ce52003ca18f
Fix too long line in soc.models.user module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
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(