Skip to content

Commit

Permalink
Fixed empty function names in perfomance panel
Browse files Browse the repository at this point in the history
added html escaping in functions' names
  • Loading branch information
kammala authored Jul 6, 2016
1 parent 511efff commit 03fb30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp_debugtoolbar/panels/templates/performance.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<td>{{ '%.4f' % row['percall'] }}</td>
<td>{{ row['cumtime'] }}</td>
<td>{{ '%.4f' % row['percall_cum'] }}</td>
<td title="{{ row['filename_long'] }}">{{ row['filename'] }}</td>
<td title="{{ row['filename_long'] }}">{{ row['filename']|e }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 03fb30a

Please sign in to comment.