On gio, 2007-11-01 at 20:34 +0000, Nino wrote: > Is there a way to force a specific hook file? For some reason I cant > get it to pick up the hook file I created. > > The Main module doing all the importing is ConcordanceExtUI.py > > But when I create a hook-ConcordanceExtUI.py or even a hook- > Concordance_Extension.ConcordanceExtUI.py (trying to make it fully > qualified) file with the imports I'm trying to force, it wont pick up > the hook file at all. I don't get any errors, it just doesn't process > it.
The main module is never imported by Python: it is directly executed. Thus, it does not go through the imporhook/importtracker mechanism and it does not trigger any hook. If you tell me what you're trying to achieve, I can try giving you better insights. -- Giovanni Bajo --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
