Fix issue with is_auto_managed and queue_position

This commit is contained in:
Andrew Resch 2008-06-04 05:16:31 +00:00
parent 5d268424b2
commit cffb933aaa
1 changed files with 2 additions and 2 deletions

View File

@ -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))