﻿id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
4846	'unicode' object has no attribute 'partition' error with Python 2.4.	anonymous	ashkulz	"{{{
--- FlatTableProcessor.py.orig  Sat Mar 28 17:19:59 2009
+++ FlatTableProcessor.py       Sat Mar 28 19:51:28 2009
@@ -48,7 +48,7 @@
     def _parse_config(self, cols):
         config = []
         for col in cols:
-            name, sep, val = col.partition(':')
+            name, val = col.split(':',1);
             config.append( (name.strip(), [item.strip() for item in val.split()]) )
         return config
}}}

I'm not goot at python(and english too), but this changes works for me with python 2.4.

thanks for your work.



"	defect	closed	normal	FlatTableMacro	trivial	fixed			0.11
