On Thu, Oct 29, 2009 at 6:50 PM, jvandal <[email protected]> wrote: > > Hi, > > I am following the Step By step Guide to Dabo and I got to the "Taking a > Test Run" > This is my flow. > I looked at the messages but I didn't find a solution I could understand. > I > am running the Windows Vista > Any help will be appreciated. > Thanks \ > Jim > > in.py", line 139, in _afterInit > self.createBizobjs() > File "c:\users\jim\appdata\local\temp\tmphpl5an.py", line 331, in > createBizobj > s > bizClient = self.Application.biz.ClientBizobj(conn) > AttributeError: 'NoneType' object has no attribute 'ClientBizobj' > > I'm new at this but just went through the tutorial myself. The NoneType error is referring to the fact that ClientBizobj doesn't exist I believe. Did you forget to add the following to ../biz/__init__.py perhaps?
from ClientBizobj import ClientBizobj from HoursBizobj import HoursBizobj I believe that's covered pretty early in the (excellent) tutorial. Aaron L. Carlow --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html --- _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
