summaryrefslogtreecommitdiff
path: root/src/plugins/python/weechat-python-api.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-11-07 07:31:58 +0100
committerSébastien Helleu <flashcode@flashtux.org>2014-11-07 07:31:58 +0100
commit2b84b771fbf57c0a28ec1ec9f3433921b617f381 (patch)
tree1f8297c778f67d1247f0896451a8f1bbbe93768c /src/plugins/python/weechat-python-api.c
parent7aee7d863c3db613d19b0538fc3bbd2d22deac3b (diff)
downloadweechat-2b84b771fbf57c0a28ec1ec9f3433921b617f381.zip
python: remove comment added by mistake
Diffstat (limited to 'src/plugins/python/weechat-python-api.c')
-rw-r--r--src/plugins/python/weechat-python-api.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/python/weechat-python-api.c b/src/plugins/python/weechat-python-api.c
index cf08d0834..c79196ad5 100644
--- a/src/plugins/python/weechat-python-api.c
+++ b/src/plugins/python/weechat-python-api.c
@@ -1409,11 +1409,7 @@ 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))