diff options
Diffstat (limited to 'src/plugins/scripts/python')
-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 62addc033..a62ae57a5 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -242,7 +242,7 @@ weechat_python_print_infobar (PyObject *self, PyObject *args) return Py_BuildValue ("i", 0); } - python_plugin->infobar_printf (python_plugin, delay, message); + python_plugin->infobar_printf (python_plugin, delay, "%s", message); return Py_BuildValue ("i", 1); } |