fix torrent_handle.status in python binding

This commit is contained in:
Arvid Norberg 2011-03-05 02:31:12 +00:00
parent 019b682cf9
commit 81c730fe54
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ void bind_torrent_handle()
class_<torrent_handle>("torrent_handle")
.def("get_peer_info", get_peer_info)
.def("status", _(&torrent_handle::status))
.def("status", _(&torrent_handle::status), arg("flags") = 0xffffffff)
.def("get_download_queue", get_download_queue)
.def("file_progress", file_progress)
.def("trackers", trackers)