diff options
author | Emmanuel Bouthenot <kolter@openics.org> | 2006-02-16 21:14:36 +0000 |
---|---|---|
committer | Emmanuel Bouthenot <kolter@openics.org> | 2006-02-16 21:14:36 +0000 |
commit | 14c9afb990ba60a665e79a2b567b2f7e4f9d36f3 (patch) | |
tree | 682d185952d30c3e85b80da0ac3ba2d60adb5ea4 /src/plugins | |
parent | c491b393888992990070c5c31265db17af96daaf (diff) | |
download | weechat-14c9afb990ba60a665e79a2b567b2f7e4f9d36f3.zip |
fix typo in parsing args for weechat_python_add_command_handler
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/scripts/python/weechat-python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c index 69169dab0..e3faa6274 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -394,7 +394,7 @@ weechat_python_add_command_handler (PyObject *self, PyObject *args) if (!PyArg_ParseTuple (args, "ss|ssss", &command, &function, &description, &arguments, &arguments_description, - completion_template)) + &completion_template)) { python_plugin->print_server (python_plugin, "Python error: wrong parameters for " |