On Mar 28, 3:44 am, George <george.m...@gmail.com> wrote: > try: > from gpy import * > > except: > print "Couldn't import" > > Any suggestions? What am I doing wrong? This is frustrating.
Remove the try...except and see what exception is being thrown and what traceback you are getting. All your exception handling code does is hide any attempts the system is making at telling you the source of the problem. If the actual traceback isn't helpful you might want to put some print statements into the pakage to see how far it is getting. Alternatively use pdb to step through the import (but you need some magic code for that to work see http://jjinux.blogspot.com/2008/05/python-debugging-google-app-engine-apps.html). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---