this problem was caused when ProtoRPC was deployed as part of the App Engine runtime. The quickest solution for you is to make a small hack that will allow to continue to use your original version:
http://groups.google.com/group/google-protorpc-discuss/browse_thread/thread/d7e3749420168a5b However, the main problem is that a few weeks ago, service_handlers were moved in to the protorpc.webapp module. What you need to do in this case is change your service_handler import from: from protorpc import service_handlers to from protorpc.webapp import service_handlers. I would recommend that fix your imports and use the latest version of ProtoRPC rather than relying on older versions. On Jun 16, 8:19 am, Rodrigo Pinho Pereira De Souza <[email protected]> wrote: > Please, someone from Google take a look on this. > > I have an app, which uses google protorpc ( bookcalc.appspot.com ) > > This app was working fine until yesterday, but around 10pm( est > time ), it stopped working. > > The logs say: > exceptions.ImportError: Can not import service_handlers > > The code is: > from protorpc import service_handlers > > The protorpc is just a folder inside my application, so I assume that > this folder was removed someway. > > I will redeploy my application, and if this solves the problem, it > will indicate that there is a serious problem with GAE. > > Thanks, > Rodrigo Pinho Pereira de Souza -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en.
