SVN: r23744 - trunk/quixote/form2

"Roger E. Masse" <rmasse-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Thu, 18 Mar 2004 16:41:32 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: rmasse
Date: 2004-03-18 16:41:32 -0500 (Thu, 18 Mar 2004)
New Revision: 23744

Modified:
   trunk/quixote/form2/compatibility.py
   trunk/quixote/form2/form.py
Log:
Whitespace normalization


Modified: trunk/quixote/form2/compatibility.py
===================================================================
--- trunk/quixote/form2/compatibility.py	2004-03-18 20:03:42 UTC (rev 23743)
+++ trunk/quixote/form2/compatibility.py	2004-03-18 21:41:32 UTC (rev 23744)
@@ -49,7 +49,7 @@
     def add_cancel_button(self, caption, url):
         self.add_submit("cancel", caption)
         self.cancel_url = url
-    
+
     def render(self, request, action_url=None):
         if action_url:
             self.action_url = action_url
@@ -63,7 +63,7 @@
 
     def action(self, request, submit, values):
         raise NotImplementedError, "sub-classes must implement 'action()'"
-        
+
     def handle(self, request):
         """handle(request : HTTPRequest) -> string
 

Modified: trunk/quixote/form2/form.py
===================================================================
--- trunk/quixote/form2/form.py	2004-03-18 20:03:42 UTC (rev 23743)
+++ trunk/quixote/form2/form.py	2004-03-18 21:41:32 UTC (rev 23744)
@@ -268,7 +268,7 @@
         for widget in self.widgets:
             r += widget.form_render(self)
         return r.getvalue()
-            
+
     def _render_hidden_widgets(self):
         r = TemplateIO(html=True)
         for widget in self.hidden_widgets: