You may have this error loading a template:
AttributeError: 'module' object has no attribute 'defaulttags'
Perhaps Pyamf includes an older version of Django library .
To workaround write the imports in this order:
from google.appengine.ext.webapp import template from pyamf.remoting.gateway.google import WebAppGateway
It seems odd but the problem disappears.
What version of PyAMF are you using? The custom import code of PyAMF had a few issues in 0.4.x but were (should be) resolved in 0.5.x.
ResponderEliminarThanks!
Nick
I am using the @version: 0.5.1.
ResponderEliminarGoogle AppEngine derived the framework from Djago 0.96
Cheers