From 3f50356a14f299c57ef9b164c0c5a1c1321d5699 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 11 Mar 2014 10:41:55 +0100 Subject: exec: remove error prefix in case of unexpected end of a command --- src/plugins/exec/exec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/exec/exec.c b/src/plugins/exec/exec.c index 9ab44cf9a..3d9ffd2ff 100644 --- a/src/plugins/exec/exec.c +++ b/src/plugins/exec/exec.c @@ -261,10 +261,10 @@ exec_end_command (struct t_exec_cmd *exec_cmd, int return_code) else { weechat_printf_tags (ptr_buffer, "exec_rc", - _("%s%s: unexpected end of command %d " + _("%s: unexpected end of command %d " "(\"%s\")"), - weechat_prefix ("error"), EXEC_PLUGIN_NAME, - exec_cmd->number, exec_cmd->command); + EXEC_PLUGIN_NAME, exec_cmd->number, + exec_cmd->command); } } -- cgit v1.2.3