Update scripts/commands.py

Co-authored-by: Peter Stalman <sarkedev@gmail.com>
This commit is contained in:
Bernhard Mueller
2023-04-12 23:32:17 +07:00
committed by GitHub
parent cc9723c26e
commit 9e8d35277b

View File

@@ -107,7 +107,7 @@ def execute_command(command_name, arguments):
if cfg.execute_local_commands:
return exec_shell(arguments["command_line"])
else:
return "You are not allowed to run local shell commands. To execute shell commands, EXECUTE_SHELL_COMMANDS must be set to 'True' in your config. Do not attempt to bypass the restriction."
return "You are not allowed to run local shell commands. To execute shell commands, EXECUTE_LOCAL_COMMANDS must be set to 'True' in your config. Do not attempt to bypass the restriction."
elif command_name == "generate_image":
return generate_image(arguments["prompt"])
elif command_name == "do_nothing":