From 72261756f5088ebe32fcef89be0a40c0f9a27b3a Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 15 Jun 2007 21:54:43 +0000 Subject: [PATCH] restart need notice on utpex --- src/deluge_core.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp index 1e8b8d0fd..cfe600f61 100644 --- a/src/deluge_core.cpp +++ b/src/deluge_core.cpp @@ -1273,6 +1273,9 @@ static PyObject *torrent_use_utpex(PyObject *self, PyObject *args) printf("Starting UTPEX\r\n"); M_ses->add_extension(&libtorrent::create_ut_pex_plugin); } + else{ + printf("You must restart to remove UTPEX\r\n"); + } Py_INCREF(Py_None); return Py_None; }