summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNils Görs <weechatter@arcor.de>2014-11-06 21:44:57 +0100
committerNils Görs <weechatter@arcor.de>2014-11-06 21:44:57 +0100
commit7aee7d863c3db613d19b0538fc3bbd2d22deac3b (patch)
tree65137d8e4867e40122984e2f8f9d18c5befd72d1 /src
parentd6a33fb0a6bb00c59ff7df139dfe03dbd5e45bcd (diff)
downloadweechat-7aee7d863c3db613d19b0538fc3bbd2d22deac3b.zip
core: update German translations
Diffstat (limited to 'src')
-rw-r--r--src/plugins/python/weechat-python-api.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/python/weechat-python-api.c b/src/plugins/python/weechat-python-api.c
index c79196ad5..cf08d0834 100644
--- a/src/plugins/python/weechat-python-api.c
+++ b/src/plugins/python/weechat-python-api.c
@@ -1409,7 +1409,11 @@ weechat_python_api_config_boolean (PyObject *self, PyObject *args)
{
char *option;
int value;
-
+/*
+ if (option == NULL)
+ API_RETURN_INT();
+ API_RETURN_ERROR;
+*/
API_FUNC(1, "config_boolean", API_RETURN_INT(0));
option = NULL;
if (!PyArg_ParseTuple (args, "s", &option))