> I'm getting a module not found error. and > If I run 'tg-admin shell', I see that the package name exists as a key in the sys.modules dictionary.
Hi sam, we got this same error yesterday while trying to do something different. What that error message means is that the specified location of a file or module is not correct or from the way you declared your import, the module cannot be reached from the working path of your script. A line i found that helped me from some forum "the . in a module declaration may be incorrect". For example, we had a module locations of '.templates.404notfound' which was incorrect (should have been like 'libraries.templates. 404notfound' due to folder location structure). hope this helps. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

