From 98781f8db482f32980b30b1932769df27f89a99a Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Wed, 5 Oct 2011 14:37:40 +0300 Subject: [PATCH] command_system. do not automatically enable Execute class --- src/command_system/implementation/execute.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command_system/implementation/execute.py b/src/command_system/implementation/execute.py index 2ebdef64b..e5ed220f3 100644 --- a/src/command_system/implementation/execute.py +++ b/src/command_system/implementation/execute.py @@ -41,7 +41,7 @@ from ..framework import CommandContainer, command, doc from hosts import * class Execute(CommandContainer): - AUTOMATIC = True + AUTOMATIC = False HOSTS = ChatCommands, PrivateChatCommands, GroupChatCommands DIRECTORY = "~" @@ -117,4 +117,4 @@ class Show(Execute): if success and stdout: processor.send(stdout) elif not success and stderr: - processor.echo_error(stderr) \ No newline at end of file + processor.echo_error(stderr)