From 77f6be5aac314009f4ac0731702a292665caafa7 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sun, 18 Nov 2007 04:30:18 +0000 Subject: [PATCH] disable lsd --- 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 1be980715..c4f9a797d 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; }