|
From: Samuele P. <ped...@bl...> - 2002-10-11 14:27:26
|
From: "Miche=E1l Healy" <mic...@ya...> > from com.engitech.datamatcher.balancer import * > > class Rules2(balancer.RuleBase2): either you have retyped instead of copy&pasted, or the above class Rules2(balancer.RuleBase2): should be class Rules2(balancer): Or =66rom com.engitech.datamatcher import balancer class Rules2(balancer.RuleBase2): btw import * is mostly a bad idea in Jython. regards. |