Minor style fixes
authorSverre Rabbelier <srabbelier@gmail.com>
Sat, 07 Mar 2009 00:31:16 +0000
changeset 1702 6c69b7cff908
parent 1701 58e3b1e2b0c1
child 1703 6d6813e83756
Minor style fixes Patch by: Sverre Rabbelier
app/soc/views/models/organization.py
--- a/app/soc/views/models/organization.py	Fri Mar 06 22:55:49 2009 +0000
+++ b/app/soc/views/models/organization.py	Sat Mar 07 00:31:16 2009 +0000
@@ -36,6 +36,7 @@
 from soc.logic.models import organization as org_logic
 from soc.logic.models import org_admin as org_admin_logic
 from soc.logic.models import org_app as org_app_logic
+from soc.logic.models import program as program_logic
 from soc.logic.models import user as user_logic
 from soc.views import helper
 from soc.views import out_of_band
@@ -107,12 +108,14 @@
 
     patterns = []
 
-    patterns += [(r'^%(url_name)s/(?P<access_type>apply_mentor)/%(scope)s$',
+    patterns += [
+        (r'^%(url_name)s/(?P<access_type>apply_mentor)/%(scope)s$',
         'soc.views.models.%(module_name)s.apply_mentor',
         "List of all %(name_plural)s you can apply to"),
         (r'^%(url_name)s/(?P<access_type>list_proposals)/%(key_fields)s$',
         'soc.views.models.%(module_name)s.list_proposals',
-        "List of all Student Proposals for this %(name)s"),]
+        "List of all Student Proposals for this %(name)s"),
+        ]
 
     new_params['extra_django_patterns'] = patterns