Ticket #6158: debug.py.patch
File debug.py.patch, 726 bytes (added by , 17 years ago) |
---|
-
debug.py
145 145 'sys_executable': sys.executable, 146 146 'sys_version_info': '%d.%d.%d' % sys.version_info[0:3], 147 147 'django_version_info': get_version(), 148 'sys_path' : sys.path, 148 149 'template_info': template_info, 149 150 'template_does_not_exist': template_does_not_exist, 150 151 'loader_debug_info': loader_debug_info, … … 368 369 <th>Python Version:</th> 369 370 <td>{{ sys_version_info }}</td> 370 371 </tr> 372 <tr> 373 <th>Python Path:</th> 374 <td>{{ sys_path }}</td> 375 </tr> 371 376 </table> 372 377 </div> 373 378 {% if unicode_hint %}