diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-11 10:41:55 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-11 17:49:49 +0100 |
commit | 3f50356a14f299c57ef9b164c0c5a1c1321d5699 (patch) | |
tree | 89ef409c1df610ab55e4f43ddc9d3dae81b56d9c /src/plugins/exec | |
parent | ee2cb329f4c2721bee63ec1966b1a953e47081aa (diff) | |
download | weechat-3f50356a14f299c57ef9b164c0c5a1c1321d5699.zip |
exec: remove error prefix in case of unexpected end of a command
Diffstat (limited to 'src/plugins/exec')
-rw-r--r-- | src/plugins/exec/exec.c | 6 |
1 files 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); } } |