The interactive flag for management commands doesn't seem to be a thing anymore

This commit is contained in:
Jeff Bradberry 2019-06-25 11:47:06 -04:00
parent bcbb768dd3
commit c85d58e28d

View File

@ -12,7 +12,6 @@ def run_command(name, *args, **options):
command_runner = options.pop('command_runner', call_command)
stdin_fileobj = options.pop('stdin_fileobj', None)
options.setdefault('verbosity', 1)
options.setdefault('interactive', False)
original_stdin = sys.stdin
original_stdout = sys.stdout
original_stderr = sys.stderr