Hi,

We are in the process or upgrading to SDK 1.4.1, one of the features
we were looking for was the django initialization from the
app_config.py, per SDK log:

"Allow Django initialization to be moved to appengine_config.py to
avoid Django version conflicts when mixing webapp.template with pure
Django.
http://code.google.com/p/googleappengine/issues/detail?id=1758";

But is not clear exactly how one should actually make the
initialization. In that ticket the last suggestion is to use:

try:
    from google.appengine.dist import use_library
    use_library('django', '1.1')
    import django
except:
    for k in [k for k in sys.modules if k.startswith('django')]:
        del sys.modules[k]
    from google.appengine.dist import use_library
    use_library('django', '1.1')
    import django

Is that what we should aim for?

Thanks for the help !

-- 
http://about.me/david.mora

-- 
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.

Reply via email to