Hi to all.

In my python app i have this code to import dynamically (if exists)
one or more modules :

for app in APPLICATIONS:
        imp = 'basemodule.' + app + '.model'
        locals()[imp] = __import__(imp, globals(), locals(), [''])

where APPLICATIONS is a list of subpackages of basemodule

but after Makespec and Build my app says that it cannot find
basemodule.app module.

Ho can i fix that problem? Can i fix it with some particular
configuration of spec file or i have to change python code?

Thanks a lot.

Max

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to