aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/sql.py
diff options
context:
space:
mode:
authorRob Hudson2008-09-20 13:46:44 -0700
committerRob Hudson2008-09-20 13:46:44 -0700
commit251a7f4eb5efaf6339edd57021e5ce3d53a679b3 (patch)
tree962b2f6dcd8689a92f9694b96015951a56e7b39e /debug_toolbar/panels/sql.py
parent0c2c0ab82d6f848b6083a176f301d72d8bb798d8 (diff)
downloaddjango-debug-toolbar-251a7f4eb5efaf6339edd57021e5ce3d53a679b3.tar.bz2
Import simplejson from django rather than an external dependency.
Diffstat (limited to 'debug_toolbar/panels/sql.py')
-rw-r--r--debug_toolbar/panels/sql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_toolbar/panels/sql.py b/debug_toolbar/panels/sql.py
index 757505a..cdcbd1b 100644
--- a/debug_toolbar/panels/sql.py
+++ b/debug_toolbar/panels/sql.py
@@ -1,9 +1,9 @@
-import simplejson
import time
from debug_toolbar.panels import DebugPanel
from django.db import connection
from django.db.backends import util
from django.template.loader import render_to_string
+from django.utils import simplejson
class DatabaseStatTracker(util.CursorDebugWrapper):
"""