diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/python/python.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c index 0fdaf9e1..13451c5b 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -1610,9 +1610,10 @@ Module_xchat_pluginpref_get(PyObject *self, PyObject *args) // This will always return numbers as integers. retint = xchat_pluginpref_get_int(ph, var); if (xchat_pluginpref_get_str(ph, var, retstr)) { - ret = PyInt_FromLong(retint); if ((retint == 0) && (strcmp(retstr, "0") != 0)) ret = PyString_FromString(retstr); + else + ret = PyInt_FromLong(retint); } else ret = Py_None; |