From eace2397e695bc591c05e782da3c5825ad65bb7a Mon Sep 17 00:00:00 2001 From: TingPing Date: Thu, 13 Sep 2012 02:19:53 -0400 Subject: Reorganized if statement. --- plugins/python/python.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins') 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; -- cgit 1.4.1