diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-01-04 07:44:52 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-01-04 07:44:52 +0100 |
commit | 6d211de00d48627517476420aabedfc13ec05921 (patch) | |
tree | 74977035875fb22cb7eec637981660fad54d4c6a /src | |
parent | 2133eb30ff4bf9672e1fb870da07627154199b39 (diff) | |
download | weechat-6d211de00d48627517476420aabedfc13ec05921.zip |
Fix bug with function nicklist_remove_nick in Python API (bug #28474)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 4 |
1 files 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; } |