quixote/form widget.py,1.36,1.37
Neil Schemenauer <nascheme-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]>
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/cvs/quixote/form
In directory hewson:/tmp/cvs-serv1406
Modified Files:
widget.py
Log Message:
Whitespace normalization.
Index: widget.py
===================================================================
RCS file: /home/cvs/quixote/form/widget.py,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- widget.py 1 Nov 2002 14:29:22 -0000 1.36
+++ widget.py 1 Nov 2002 18:48:25 -0000 1.37
@@ -8,7 +8,7 @@
__revision__ = "$Id$"
-from types import FloatType, IntType, ListType, StringType, TupleType
+from types import FloatType, IntType, ListType, StringType, TupleType
from quixote import get_request
from quixote.html import htmltext, htmlescape, htmltag, ValuelessAttr
@@ -252,7 +252,7 @@
return [ object for description, object in self.options ]
def get_descriptions (self):
- return [ description for description, object in self.options ]
+ return [ description for description, object in self.options ]
def set_value (self, value):
self.value = None
@@ -399,7 +399,7 @@
value=description,
checked=checked)
tags.append(r + description + htmltext('</input>'))
- return htmlescape(self.delim).join(tags)
+ return htmlescape(self.delim).join(tags)
class MultipleSelectWidget (SelectWidget):