summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2009-05-04 17:45:55 +0200
committerSebastien Helleu <flashcode@flashtux.org>2009-05-04 17:45:55 +0200
commitddb16b7c0e7f922d6cc0c3e67ff66381cd445899 (patch)
treebe0b2800d810e7fb434f3fe89efb655de3b66453 /src
parent28f376261837408a2c7fbf311aeafcc1c0f7818a (diff)
downloadweechat-ddb16b7c0e7f922d6cc0c3e67ff66381cd445899.zip
Fix bug with arguments of function "bar_new" in python plugin
Diffstat (limited to 'src')
-rw-r--r--src/plugins/scripts/python/weechat-python-api.c2
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))
{