From cffb933aaaf617d0606ecac3aa8d0fab735496e3 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 4 Jun 2008 05:16:31 +0000 Subject: [PATCH] Fix issue with is_auto_managed and queue_position --- bindings/python/src/torrent_handle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/src/torrent_handle.cpp b/bindings/python/src/torrent_handle.cpp index 5284ccfab..087953a89 100755 --- a/bindings/python/src/torrent_handle.cpp +++ b/bindings/python/src/torrent_handle.cpp @@ -268,9 +268,9 @@ void bind_torrent_handle() .def("pause", _(&torrent_handle::pause)) .def("resume", _(&torrent_handle::resume)) - .def_readonly("is_auto_managed", _(&torrent_handle::is_auto_managed)) + .def("is_auto_managed", _(&torrent_handle::is_auto_managed)) .def("auto_managed", _(&torrent_handle::auto_managed)) - .def_readonly("queue_position", _(&torrent_handle::queue_position)) + .def("queue_position", _(&torrent_handle::queue_position)) .def("queue_position_up", _(&torrent_handle::queue_position_up)) .def("queue_position_down", _(&torrent_handle::queue_position_down)) .def("queue_position_top", _(&torrent_handle::queue_position_top))