{% extends "error/base.html" %} {% block title %}{{ exc_type }}{% endblock %} {% block header %}{{ exc_type }}{% endblock %} {% block content %}
{{ exc_msg }}
{% if is_framework_error %}
Potential Framework Bug

This error seems to originate from within PyWire. If you believe this is a bug, please open an issue on GitHub.

{% endif %}

Traceback

{% for frame in frames %}
{{ frame.func_name }} {{ frame.short_filename }}:{{ frame.lineno }}
{% for line in frame.context %}
{{ line.num }} {{ line.content }}
{% endfor %}
{% endfor %}
{% endblock %}