Reviewers: ,


Please review this at http://codereview.tryton.org/747002/

Affected files:
  M product.py


Index: product.py
===================================================================

--- a/product.py
+++ b/product.py
@@ -102,14 +102,6 @@
         if self.default_uom:
             return self.default_uom.category.id

-    @classmethod
-    def copy(cls, templates, default=None):
-        if default is None:
-            default = {}
-        default = default.copy()
-        default['products'] = None
-        return super(Template, cls).copy(templates, default=default)
-

 class Product(ModelSQL, ModelView):
     "Product Variant"



Reply via email to