From 61a0d1f77b7fd8eb341a7a84a40e3f42e2a9d874 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Thu, 26 Mar 2020 13:17:03 -0400 Subject: [PATCH] fix busted shell_plus in the development environment for some reason (unsure why), django-extensions has begun noticing ipython importability and treating "shell_plus" as "start an IPython notebook by default it could be that this is a bug in django-extensions that will be fixed soon, but for now, this fixes the issue --- awx/settings/development.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/settings/development.py b/awx/settings/development.py index ac2a9fde94..9629ecbf3e 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -40,6 +40,7 @@ NOTEBOOK_ARGUMENTS = [ ] # print SQL queries in shell_plus +SHELL_PLUS = 'ipython' SHELL_PLUS_PRINT_SQL = False # show colored logs in the dev environment