Skip to content

Commit

Permalink
Merge pull request #43 from kammala/master
Browse files Browse the repository at this point in the history
Fixed empty functions' names in perfomance panel
  • Loading branch information
jettify authored Jul 6, 2016
2 parents 511efff + 03fb30a commit 2e83081
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 2e83081

Please sign in to comment.