From 431dedda3e10af93e896ad74215ff4ec3d782b0a Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 15 May 2008 07:47:36 +0000 Subject: [PATCH] boost python fix --- bindings/python/src/torrent_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/src/torrent_info.cpp b/bindings/python/src/torrent_info.cpp index 802a6a6c7..a9ba952d8 100755 --- a/bindings/python/src/torrent_info.cpp +++ b/bindings/python/src/torrent_info.cpp @@ -85,7 +85,7 @@ void bind_torrent_info() .def("num_pieces", &torrent_info::num_pieces) .def("info_hash", &torrent_info::info_hash, copy) - .def("hash_for_piece", &torrent_info::hash_for_piece, copy) + .def("hash_for_piece", &torrent_info::hash_for_piece) .def("piece_size", &torrent_info::piece_size) .def("num_files", &torrent_info::num_files, (arg("storage")=false))