app/soc/views/models/role.py
changeset 528 5e6ae12cc495
parent 521 07b2c382a4d6
child 538 4d209757c835
--- a/app/soc/views/models/role.py	Thu Nov 20 23:34:26 2008 +0000
+++ b/app/soc/views/models/role.py	Thu Nov 20 23:51:45 2008 +0000
@@ -51,8 +51,10 @@
     #: db.Model subclass for which the form will gather information
     model = soc.models.request.Request
 
-    #: exclude pretty much everything, model=None would also remove the help text etc. 
-    exclude = ['inheritance_line', 'requester', 'to', 'role', 'accepted', 'declined']
+    #: Exclude pretty much everything, model=None would 
+    #: also remove the help text etc. 
+    exclude = ['inheritance_line', 'requester', 'to', 'role', 
+        'accepted', 'declined']
 
   requester = forms.CharField(widget=helper.widgets.ReadOnlyInput())
 
@@ -94,7 +96,8 @@
     new_params['name'] = self._params['name']
     new_params['name_short'] = self._params['name_short']
     new_params['name_plural'] = self._params['name_plural']
-    new_params['instruction_text'] = self.DEF_INVITE_INSTRUCTION_TEXT % self._params
+    new_params['instruction_text'] = \
+        self.DEF_INVITE_INSTRUCTION_TEXT % self._params
 
     params = dicts.merge(params, new_params)