Fix import sorting and docstring typos in soc.views.models.program module.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Fri, 05 Dec 2008 22:25:57 +0000
changeset 666 b9b0506efe8d
parent 665 ce9f11f7c4cf
child 667 f96095df1433
Fix import sorting and docstring typos in soc.views.models.program module. Patch by: Pawel Solyga
app/soc/views/models/program.py
--- a/app/soc/views/models/program.py	Fri Dec 05 22:25:08 2008 +0000
+++ b/app/soc/views/models/program.py	Fri Dec 05 22:25:57 2008 +0000
@@ -27,19 +27,19 @@
 from django import forms
 from django.utils.translation import ugettext_lazy
 
+from soc.logic import cleaning
 from soc.logic import dicts
-from soc.logic import cleaning
 from soc.logic.models import sponsor as sponsor_logic
+from soc.views import helper
 from soc.views.helper import redirects
 from soc.views.models import base
 from soc.views.models import sponsor as sponsor_view
-from soc.views import helper
 
 import soc.logic.models.program
 
 
 class View(base.View):
-  """View methods for the Sponsor model.
+  """View methods for the Program model.
   """
 
   def __init__(self, params=None):