[EMAIL PROTECTED] wrote: > I think I fixed it by changing > > import dabo.dObject as dObject > to > from dabo.dObject import dObject
Okay, that's because dabo.dObject is the module. You could have said 'import dabo.dObject.dObject as dObject' to get the classref as well, but your #2 is better. I'm still trying to figure out your traceback. I've never seen 'innermost last'; it's usually 'most recent call last'. > P.S. where is there an explanation of the import/from declarations? google "python module" or "python import". :) Try this: http://docs.python.org/tut/node8.html -- pkm ~ http://paulmcnett.com _______________________________________________ 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/dabo-users/[EMAIL PROTECTED]
