1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-19 17:44:47 +02:00

Fix bug with function nicklist_remove_nick in Python API (bug #28474)

This commit is contained in:
Sebastien Helleu
2010-01-04 07:44:52 +01:00
parent 2133eb30ff
commit 6d211de00d
@@ -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;
}