Alongside my other large commit to limit imports of subpackages when issuing 'import dabo', I'm also changing our 'from settings import *' call to 'import settings', and going through all our code and changing code like 'if dabo.eventLogging:' to 'if dabo.settings.eventLogging:'.
The old global import will still happen by default, so this won't break things for people immediately. However, when I'm done I'm going to need to rebuild the .po files for the localization, since the docstring in dObject had an example which referred to 'dabo.eventLogging' and I changed that to dabo.settings.eventLogging. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
