From bb0c3ca35c7602e7ee19eb8039da82865ba0c672 Mon Sep 17 00:00:00 2001
From: Jean-Paul Smets <jp@nexedi.com>
Date: Sat, 17 Jul 2004 08:20:18 +0000
Subject: [PATCH] Make sure getVariationBaseCategoryList returns a list (for
 formulator). Returning tuple may be considered as a multi args result.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1223 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/Coramy/Document/OrderLine.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/Coramy/Document/OrderLine.py b/product/Coramy/Document/OrderLine.py
index f7d280b5a5..88a950a8fa 100755
--- a/product/Coramy/Document/OrderLine.py
+++ b/product/Coramy/Document/OrderLine.py
@@ -133,4 +133,4 @@ Une ligne tarifaire."""
         """
         # Temp fix until upgrade of Variated XXX
         # XXX - may be incompatible with future versions of ERP5
-        return self.variation_base_category_list
+        return list(self.variation_base_category_list)
-- 
2.30.9