From c39d6e89f1c87a14b77fe29fda06fff74b249b3e Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Tue, 11 Dec 2007 05:22:11 +0000 Subject: [PATCH] Fixed #6158 -- Display PYTHONPATH on the debug error page. Thanks, annacoder. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6908 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/debug.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/django/views/debug.py b/django/views/debug.py index 4a9d8bd8b6..cdec3f8d9d 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -145,6 +145,7 @@ def technical_500_response(request, exc_type, exc_value, tb): 'sys_executable': sys.executable, 'sys_version_info': '%d.%d.%d' % sys.version_info[0:3], 'django_version_info': get_version(), + 'sys_path' : sys.path, 'template_info': template_info, 'template_does_not_exist': template_does_not_exist, 'loader_debug_info': loader_debug_info, @@ -368,6 +369,10 @@ TECHNICAL_500_TEMPLATE = """ Python Version: {{ sys_version_info }} + + Python Path: + {{ sys_path }} + {% if unicode_hint %}