More fun with FROM IMPORT...
http://effbot.org/zone/import-confusion.htm
Found this while I was looking around. Apparently, its a scope issue.
The issue that we're running into here is that settings is being
called as a local scope as opposed to the xmlsettings.settings
variable.
So it looks like the code was setup in the way that the python devs
are saying not to set it up.
We can work around it using it the way that it is now or we can
refactor the code to properly use the variable/module scope as its
meant to be.
Thoughts?