From 4ff0a046084ec5f65e85e992362f81d0438edfb5 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 17 Nov 2007 11:39:05 +0000 Subject: [PATCH] disable lsd for now --- src/deluge_core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp index e268322f6..e8ee17c51 100644 --- a/src/deluge_core.cpp +++ b/src/deluge_core.cpp @@ -1642,13 +1642,13 @@ static PyObject *torrent_use_lsd(PyObject *self, PyObject *args) python_long action; PyArg_ParseTuple(args, "i", &action); - if (action){ + /* if (action){ M_ses->start_lsd(); } else{ M_ses->stop_lsd(); } - +*/ Py_INCREF(Py_None); return Py_None; }