Style fixes in soc.models.document module (adding of missing whitespaces).
authorPawel Solyga <Pawel.Solyga@gmail.com>
Sun, 01 Feb 2009 13:24:43 +0000
changeset 1141 4a37239d834f
parent 1140 a8eaea0b268d
child 1142 da2487767ef4
Style fixes in soc.models.document module (adding of missing whitespaces). Patch by: Pawel Solyga Reviewed by: to-be-reviewed
app/soc/models/document.py
--- a/app/soc/models/document.py	Sun Feb 01 13:24:00 2009 +0000
+++ b/app/soc/models/document.py	Sun Feb 01 13:24:43 2009 +0000
@@ -48,7 +48,7 @@
 
   #: field storing the prefix of this document
   prefix = db.StringProperty(default='user', required=True,
-      choices=['site','club', 'sponsor', 'program', 'organization', 'user'],
+      choices=['site', 'club', 'sponsor', 'program', 'organization', 'user'],
       verbose_name=ugettext('Prefix'))
   prefix.help_text = ugettext(
       'Indicates the prefix of the document,'
@@ -56,7 +56,7 @@
 
   #: field storing the required access to read this document
   read_access = db.StringProperty(default='public', required=True,
-      choices=['admin','restricted', 'member', 'user', 'public'],
+      choices=['admin', 'restricted', 'member', 'user', 'public'],
       verbose_name=ugettext('Read Access'))
   read_access.help_text = ugettext(
       'Indicates the state of the document, '
@@ -64,7 +64,7 @@
 
   #: field storing the required access to write to this document
   write_access = db.StringProperty(default='public', required=True,
-      choices=['admin','restricted', 'member', 'user'],
+      choices=['admin', 'restricted', 'member', 'user'],
       verbose_name=ugettext('Write Access'))
   write_access.help_text = ugettext(
       'Indicates the state of the document, '