{% comment Tornado template %} {% extends "error.html" %} {% block message %} {% if exc_type %}

{{ exc_type }} at {{ request.uri }}

{% end %} {% if exc_msg %}
{{ exc_msg }}
{% end %}
{% if version %}
Disseminate Version:
{{ version }}
{% end %}
Request URL:
{{ request.full_url() }}
{% if exc_type %}
Exception Type:
{{ exc_type }}
{% end %} {% if exc_args %}
Exception Arguments:
{{ exc_args }}
{% end %} {% if exc_filename and exc_lineno %}
Exception Location:
{{ exc_filename }}, line {{ exc_lineno }}
{% end %} {% if python_version %}
Python Version:
{{ python_version }}
{% end %} {% if python_executable %}
Python Executable:
{{ python_executable }}
{% end %} {% if platform %}
Platform:
{{ platform }}
{% end %}
{% if traceback %}
{% for frame in traceback %}
{{ frame }}
{% end %}
{% end %} {% if exc and hasattr(exc, 'shell_out') %}

Command

{{ exc.cmd }}

Return code

{{ exc.returncode }}

Shell output

{{ exc.shell_out | replace("\n", "
") }}

Shell error

{{ exc.shell_err | replace("\n", "
") }}
{% end %} {% end %}