diff --git a/src/pretix/base/management/commands/shell_scoped.py b/src/pretix/base/management/commands/shell_scoped.py index 8a1c2e5248..28412c45a4 100644 --- a/src/pretix/base/management/commands/shell_scoped.py +++ b/src/pretix/base/management/commands/shell_scoped.py @@ -17,7 +17,7 @@ class Command(BaseCommand): flags = parser.parse_known_args(sys.argv[2:])[1] if "--override" in flags: with scopes_disabled(): - return call_command("shell", *args, **options) + return call_command("shell_plus", *args, **options) lookups = {} for flag in flags: @@ -36,4 +36,4 @@ class Command(BaseCommand): for app_name, app_value in lookups.items() } with scope(**scope_options): - return call_command("shell", *args, **options) + return call_command("shell_plus", *args, **options)