From 6d211de00d48627517476420aabedfc13ec05921 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Mon, 4 Jan 2010 07:44:52 +0100 Subject: [PATCH] Fix bug with function nicklist_remove_nick in Python API (bug #28474) --- src/plugins/scripts/python/weechat-python-api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index 1bfe080fa..e6e9cb870 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -4858,8 +4858,8 @@ weechat_python_api_nicklist_remove_nick (PyObject *self, PyObject *args) PYTHON_RETURN_ERROR; } - weechat_nicklist_remove_group (script_str2ptr (buffer), - script_str2ptr (nick)); + weechat_nicklist_remove_nick (script_str2ptr (buffer), + script_str2ptr (nick)); PYTHON_RETURN_OK; }