From 6253d68e3fdff86f8fe32fe44baee010b33899cf Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Thu, 30 Aug 2007 07:41:18 +0000 Subject: [PATCH] remove unnecessary print --- src/deluge_core.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp index 5a16acfe6..84625cfa6 100644 --- a/src/deluge_core.cpp +++ b/src/deluge_core.cpp @@ -475,8 +475,6 @@ static PyObject *torrent_set_download_rate_limit(PyObject *self, PyObject *args) return NULL; M_ses->set_download_rate_limit(arg); - printf("Capping download to %d bytes per second\n", (int)M_ses->download_rate_limit()); - Py_INCREF(Py_None); return Py_None; } @@ -488,7 +486,6 @@ static PyObject *torrent_set_upload_rate_limit(PyObject *self, PyObject *args) return NULL; M_ses->set_upload_rate_limit(arg); - printf("Capping upload to %d bytes per second\n", (int)M_ses->upload_rate_limit()); Py_INCREF(Py_None); return Py_None; }