In case it helps, the following is the traceback (parts of the path
replaced by '...') I get in the GAE logs when DEBUG=False, and I try
to access Models within the admin interface:

-------------------------------------------------------------
Exception in request:
Traceback (most recent call last):
  File ".../common/zip-packages/django-1.1.zip/django/core/handlers/
base.py", line 119, in get_response
    return callback(request, **param_dict)
  File ".../common/zip-packages/django-1.1.zip/django/views/
defaults.py", line 14, in page_not_found
    return http.HttpResponseNotFound(t.render(RequestContext(request,
{'request_path': request.path})))
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 178, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 779, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 792, in render_node
  File ".../common/zip-packages/django-1.1.zip/django/template/
loader_tags.py", line 97, in render
    return compiled_parent.render(context)
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 178, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 779, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 792, in render_node
  File ".../common/zip-packages/django-1.1.zip/django/template/
loader_tags.py", line 24, in render
    result = self.nodelist.render(context)
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 779, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 792, in render_node
  File ".../common/zip-packages/django-1.1.zip/django/template/
defaulttags.py", line 382, in render
    raise e
NoReverseMatch: Reverse for 'myapp.views.list_people' with arguments
'()' and keyword arguments '{}' not found.
-------------------------------------------------------------

myapp is not included in "INSTALLED_APPS" or anywhere else in
settings.py, so I don't know quite how this can be happening.

I have since then removed the myapp directory, as well as templates/
main.html and templates/base.html (myapp is referenced in these
templates), in case this would make a difference (my application is in
a different directory) -- again, with DEBUG=True, *everything works*,
but with it False, I get the following traceback:

-------------------------------------------------------------
Exception in request:
Traceback (most recent call last):
  File ".../common/zip-packages/django-1.1.zip/django/core/handlers/
base.py", line 119, in get_response
    return callback(request, **param_dict)
  File ".../common/zip-packages/django-1.1.zip/django/views/
defaults.py", line 14, in page_not_found
    return http.HttpResponseNotFound(t.render(RequestContext(request,
{'request_path': request.path})))
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 178, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 779, in render
  File ".../common/zip-packages/django-1.1.zip/django/template/
__init__.py", line 792, in render_node
  File ".../common/zip-packages/django-1.1.zip/django/template/
loader_tags.py", line 71, in render
    compiled_parent = self.get_parent(context)
  File ".../common/zip-packages/django-1.1.zip/django/template/
loader_tags.py", line 66, in get_parent
    raise TemplateSyntaxError, "Template %r cannot be extended,
because it doesn't exist" % parent
TemplateSyntaxError: Template u'base.html' cannot be extended, because
it doesn't exist
-------------------------------------------------------------

-- 
You received this message because you are subscribed to the Google Groups 
"app-engine-patch" 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/app-engine-patch?hl=en.

Reply via email to