You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Appengine Admin Users
I am new to django and appengine. I have an app working in dev server.
However when I try to import appengine_admin I run into a problem. It
seems to confuse the django settings machinery and I get the error:
'module' object has no attribute 'ROOT_URLCONF'
Any suggestions?
Roman
unread,
Jan 4, 2009, 2:54:50 AM1/4/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Appengine Admin Users
Turns out one has to import template before anything from django, i.e.
before importing appengine_admin:
from google.appengine.ext.webapp import template
You may want to put this in the instructions.
Roman
unread,
Jan 4, 2009, 5:28:37 AM1/4/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Appengine Admin Users
Well, sorry for the noise: I was trying to jam appengine_admin into
django wsgi loop...
I now run it in a separate script and it works.