From 75df680f6e0fda6a603e64627a71e187ca117bd6 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 22 Oct 2013 15:06:16 +0200 Subject: Fix #420 -- Regression in 729d75d. Thanks Jacob Hesch for the report. --- debug_toolbar/management/commands/debugsqlshell.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debug_toolbar') diff --git a/debug_toolbar/management/commands/debugsqlshell.py b/debug_toolbar/management/commands/debugsqlshell.py index c5718b8..120f0a2 100644 --- a/debug_toolbar/management/commands/debugsqlshell.py +++ b/debug_toolbar/management/commands/debugsqlshell.py @@ -2,6 +2,8 @@ from __future__ import print_function, unicode_literals from time import time +# 'debugsqlshell' is the same as the 'shell'. +from django.core.management.commands.shell import Command from django.db.backends import util import sqlparse -- cgit v1.2.3