Skip to content

Commit

Permalink
remove unnecessary safe filters from pydoc
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert committed Sep 13, 2012
1 parent d75b2a7 commit db67140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -33,7 +33,7 @@ it in a Django template:
<div id="linear-graph" style="width:600px;height:400px"></div>
<script id="source" language="javascript" type="text/javascript">
$(function () {
$.plot($("#linear-graph"), {{ graph.series_json|safe }}, {{ graph.options_json|safe }});
$.plot($("#linear-graph"), {{ graph.series_json }}, {{ graph.options_json }});
});
</script>

Expand Down

0 comments on commit db67140

Please sign in to comment.