[Zope3-checkins] 
	SVN: Zope3/branches/isarsprint-dav-work/src/zope/app/dav/widget.py
	Correct the treatment of sequence values.
    Martijn Pieters 
    mj at zopatista.com
       
    Thu Oct 14 09:47:42 EDT 2004
    
    
  
Log message for revision 28183:
  Correct the treatment of sequence values.
  
Changed:
  U   Zope3/branches/isarsprint-dav-work/src/zope/app/dav/widget.py
-=-
Modified: Zope3/branches/isarsprint-dav-work/src/zope/app/dav/widget.py
===================================================================
--- Zope3/branches/isarsprint-dav-work/src/zope/app/dav/widget.py	2004-10-14 13:47:07 UTC (rev 28182)
+++ Zope3/branches/isarsprint-dav-work/src/zope/app/dav/widget.py	2004-10-14 13:47:41 UTC (rev 28183)
@@ -65,4 +65,4 @@
         return u', '.join(self._data)
     
     def getInputValue(self):
-        return list(self._data).split(',').strip()
+        return [v.strip() for v in self._data.split(',')]
    
    
More information about the Zope3-Checkins
mailing list