fixed typo in python binding

This commit is contained in:
Arvid Norberg 2009-01-21 23:41:26 +00:00
parent 00808473e7
commit 2454919be3
2 changed files with 3 additions and 1 deletions

View File

@ -45,6 +45,8 @@ release 0.14.2
* fixed disk cache expiry settings bug (if changed, it would be set
to the cache size)
* fixed bug in http_connection when binding to a particular IP
* fixed typo in python binding (torrent_handle::piece_prioritize should
be torrent_handle::piece_priorities)
release 0.14.1

View File

@ -317,7 +317,7 @@ void bind_torrent_handle()
.def("piece_priority", _(piece_priority0))
.def("piece_priority", _(piece_priority1))
.def("prioritize_pieces", prioritize_pieces)
.def("piece_prioritize", piece_priorities)
.def("piece_priorities", piece_priorities)
.def("prioritize_files", prioritize_files)
.def("file_priorities", file_priorities)
.def("use_interface", &torrent_handle::use_interface)