diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-09-11 23:22:13 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-09-11 23:22:13 +0200 |
commit | 4bd7eaf12328e9ce7267190d8c2c8fd727c92617 (patch) | |
tree | 6a1a26d4683e96142a9c2dcc3a1c344daf912757 /src/plugins/scripts/python | |
parent | 1c194ffa423276f77ab907a42a14e43013636c15 (diff) | |
download | weechat-4bd7eaf12328e9ce7267190d8c2c8fd727c92617.zip |
Fix API function weechat_bar_set for python/lua/ruby (patch #6912)
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index 839d4c903..2c77a00db 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -5186,9 +5186,9 @@ weechat_python_api_bar_set (PyObject *self, PyObject *args) PYTHON_RETURN_ERROR; } - weechat_buffer_set (script_str2ptr (bar), - property, - value); + weechat_bar_set (script_str2ptr (bar), + property, + value); PYTHON_RETURN_OK; } |