aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/management/commands
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 22:29:51 +0200
committerAymeric Augustin2013-10-17 18:24:57 +0200
commiteacf116d61f0e3f47a7c581275a18b3aec8548b1 (patch)
tree87674c6ea964f9404eb3d646c518a3ecd54cce4b /debug_toolbar/management/commands
parentc1f39b1a168d535e0b90d3c69273e391adf22637 (diff)
downloaddjango-debug-toolbar-eacf116d61f0e3f47a7c581275a18b3aec8548b1.tar.bz2
Switch to an external version of sqlparse.
Diffstat (limited to 'debug_toolbar/management/commands')
-rw-r--r--debug_toolbar/management/commands/debugsqlshell.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/debug_toolbar/management/commands/debugsqlshell.py b/debug_toolbar/management/commands/debugsqlshell.py
index c0e1fc1..e96f46d 100644
--- a/debug_toolbar/management/commands/debugsqlshell.py
+++ b/debug_toolbar/management/commands/debugsqlshell.py
@@ -2,7 +2,9 @@ from datetime import datetime
from django.db.backends import util
-from debug_toolbar.utils import ms_from_timedelta, sqlparse
+import sqlparse
+
+from debug_toolbar.utils import ms_from_timedelta
class PrintQueryWrapper(util.CursorDebugWrapper):