better report if the subclass factory has import problems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-01 02:20:25 +00:00
parent d9b33d7001
commit 846b11857e

View File

@@ -10,7 +10,12 @@ TheXmlResource = XmlResource_Get()
def _my_import(name):
mod = __import__(name)
try:
mod = __import__(name)
except ImportError:
import traceback
print traceback.format_exc()
raise
components = name.split('.')
for comp in components[1:]:
mod = getattr(mod, comp)