summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2009-11-20 16:58:12 +0100
committerSebastien Helleu <flashcode@flashtux.org>2009-11-20 16:58:12 +0100
commita56ac9e7354732387da92a5f79e32a25bffe088a (patch)
treedcd020c4c5a40a48e31b75e382d5ff3168782b18 /src
parentd1492b9302d5a74e2aa895efeffa989fed872dc2 (diff)
downloadweechat-a56ac9e7354732387da92a5f79e32a25bffe088a.zip
Fix typos in 2 error messages
Diffstat (limited to 'src')
-rw-r--r--src/plugins/scripts/python/weechat-python.c2
-rw-r--r--src/plugins/scripts/tcl/weechat-tcl.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c
index 19bcf9e0e..9f403e1e9 100644
--- a/src/plugins/scripts/python/weechat-python.c
+++ b/src/plugins/scripts/python/weechat-python.c
@@ -95,7 +95,7 @@ weechat_python_exec (struct t_plugin_script *script,
if ( !(evFunc && PyCallable_Check (evFunc)) )
{
weechat_printf (NULL,
- weechat_gettext ("%s%s unable to run function \"%s\""),
+ weechat_gettext ("%s%s: unable to run function \"%s\""),
weechat_prefix ("error"), PYTHON_PLUGIN_NAME, function);
/* PyEval_ReleaseThread (python_current_script->interpreter); */
if (old_interpreter)
diff --git a/src/plugins/scripts/tcl/weechat-tcl.c b/src/plugins/scripts/tcl/weechat-tcl.c
index 757652ba2..36866d481 100644
--- a/src/plugins/scripts/tcl/weechat-tcl.c
+++ b/src/plugins/scripts/tcl/weechat-tcl.c
@@ -144,7 +144,7 @@ weechat_tcl_exec (struct t_plugin_script *script,
Tcl_ListObjReplace(interp,cmdlist,0,llength,0,NULL); /* remove elements, decrement their ref count */
Tcl_DecrRefCount(cmdlist); /* -1 */
weechat_printf (NULL,
- weechat_gettext ("%s%s unable to run function \"%s\": %s"),
+ weechat_gettext ("%s%s: unable to run function \"%s\": %s"),
weechat_prefix ("error"), TCL_PLUGIN_NAME, function,
Tcl_GetStringFromObj (Tcl_GetObjResult (interp), &i));
tcl_current_script = old_tcl_script;