On Dec 3, 2008, at 4:38 PM, Bob Sysero llc Dev wrote:
> The steps are very similar but when you select Add BizObject you are
> asked where do you want to save the BizObject in a folder under the
> name
> CustomerBizobj.py which I saved in my biz folder. In my CD in the
> Editor
> for DesForm Method: *createBizobjs contains:
>
> def createBizobjs(self):
> customerBizobj = self.Application.biz.CustomerBizobj(self.Connection)
> self.addBizobj(customerBizobj)
Yes. That was an improvement I added last week.
> and this is what creates the error:
>
> Attribute Error: 'NoneType' object has no attribute 'CustomerBizobj'
Perhaps you have an old version of dApp.py? Since you have the newer
IDE code, I'm assuming that you are running using the SVN code. We
recently fixed a problem with importing these namespaces when running
Python version 2.4.
If you open dApp.py, do you see the following code starting at line
921:
else:
try:
(f, p, d) = imp.find_module(dd)
setattr(self, dd, imp.load_module(dd, f, p, d))
except ImportError, e:
self.__setattr__(dd, currmod)
-- Ed Leafe
_______________________________________________
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]