[Erp5-report] r19013 - /erp5/trunk/products/ERP5/Document/AccountingTransaction.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Feb 4 10:40:05 CET 2008
Author: yusei
Date: Mon Feb 4 10:40:04 2008
New Revision: 19013
URL: http://svn.erp5.org?rev=19013&view=rev
Log:
item of text_list must be string.
Modified:
erp5/trunk/products/ERP5/Document/AccountingTransaction.py
Modified: erp5/trunk/products/ERP5/Document/AccountingTransaction.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/AccountingTransaction.py?rev=19013&r1=19012&r2=19013&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/AccountingTransaction.py (original)
+++ erp5/trunk/products/ERP5/Document/AccountingTransaction.py Mon Feb 4 10:40:04 2008
@@ -111,7 +111,7 @@
self.getStartDate(),
self.getStopDate(), ):
if prop:
- text_list.append(prop)
+ text_list.append(str(prop))
return ' '.join(text_list)
# Compatibility
More information about the Erp5-report
mailing list