[Zope3-checkins] CVS: Zope3/src/zope/app/dublincore - dcsv.py:1.2

Fred L. Drake, Jr. fred at zope.com
Thu Aug 21 01:52:52 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/dublincore
In directory cvs.zope.org:/tmp/cvs-serv11507

Modified Files:
	dcsv.py 
Log Message:
fix whitespace removal from field name after ';' separator


=== Zope3/src/zope/app/dublincore/dcsv.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/dublincore/dcsv.py:1.1	Thu Aug 21 00:40:10 2003
+++ Zope3/src/zope/app/dublincore/dcsv.py	Thu Aug 21 00:52:51 2003
@@ -79,7 +79,7 @@
             m = _find_value(text)
             if m:
                 value = m.group(1)
-                text = text[m.end():].rstrip()
+                text = text[m.end():].lstrip()
             else:
                 value = text
                 text = ''




More information about the Zope3-Checkins mailing list