From c0fc5ba3808becefcdc8b878f133fd2a864a072d Mon Sep 17 00:00:00 2001 From: William Schwartz Date: Mon, 9 Nov 2020 16:41:13 -0600 Subject: Fixed #32183 -- Fixed shell crash when passing code with nested scopes. --- django/core/management/commands/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'django') diff --git a/django/core/management/commands/shell.py b/django/core/management/commands/shell.py index 2b306a579e..3e8a451e3e 100644 --- a/django/core/management/commands/shell.py +++ b/django/core/management/commands/shell.py @@ -84,13 +84,13 @@ class Command(BaseCommand): def handle(self, **options): # Execute the command and exit. if options['command']: - exec(options['command']) + exec(options['command'], globals()) return # Execute stdin if it has anything to read and exit. # Not supported on Windows due to select.select() limitations. if sys.platform != 'win32' and not sys.stdin.isatty() and select.select([sys.stdin], [], [], 0)[0]: - exec(sys.stdin.read()) + exec(sys.stdin.read(), globals()) return available_shells = [options['interface']] if options['interface'] else self.shells -- cgit v1.3