From 98aab9cdd3950cdcd37c4eaeb61ba6f7efc63df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Nowak?= <luke@nexedi.com> Date: Tue, 9 Mar 2010 15:29:59 +0000 Subject: [PATCH] - fix a way how interface is being declared git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33540 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/AggregatedAmountList.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/product/ERP5/AggregatedAmountList.py b/product/ERP5/AggregatedAmountList.py index f29c3d9902..71499d8ed9 100644 --- a/product/ERP5/AggregatedAmountList.py +++ b/product/ERP5/AggregatedAmountList.py @@ -30,19 +30,17 @@ from UserList import UserList import zope.interface +from Products.ERP5Type import interfaces from Products.ERP5Type.Globals import InitializeClass from Products.PythonScripts.Utility import allow_class from AccessControl import ClassSecurityInfo -from Products.ERP5.interfaces.amount_list \ - import IAmountList - class AggregatedAmountList(UserList): """ Temporary object needed to aggregate Amount value And to calculate some report or total value """ - zope.interface.implements(IAmountList) + zope.interface.implements(interfaces.IAmountList) meta_type = "AggregatedAmountList" security = ClassSecurityInfo() -- 2.30.9