diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-05-04 17:45:55 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-05-04 17:45:55 +0200 |
commit | ddb16b7c0e7f922d6cc0c3e67ff66381cd445899 (patch) | |
tree | be0b2800d810e7fb434f3fe89efb655de3b66453 /src/plugins/scripts | |
parent | 28f376261837408a2c7fbf311aeafcc1c0f7818a (diff) | |
download | weechat-ddb16b7c0e7f922d6cc0c3e67ff66381cd445899.zip |
Fix bug with arguments of function "bar_new" in python plugin
Diffstat (limited to 'src/plugins/scripts')
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index de6e44742..45282370f 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -4974,7 +4974,7 @@ weechat_python_api_bar_new (PyObject *self, PyObject *args) items = NULL; if (!PyArg_ParseTuple (args, "sssssssssssssss", &name, &hidden, &priority, - &conditions, &type, &position, &filling_top_bottom, + &type, &conditions, &position, &filling_top_bottom, &filling_left_right, &size, &size_max, &color_fg, &color_delim, &color_bg, &separator, &items)) { |