From 73d9db387745919267172d94d235998bbbdaadbf Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 15 Apr 2008 22:32:53 +0000 Subject: [PATCH] Fix torrent_handle.cpp in python bindings to compile. --- bindings/python/src/torrent_handle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/src/torrent_handle.cpp b/bindings/python/src/torrent_handle.cpp index 8d14f1e1e..5733e9f2d 100755 --- a/bindings/python/src/torrent_handle.cpp +++ b/bindings/python/src/torrent_handle.cpp @@ -301,7 +301,7 @@ void bind_torrent_handle() .def("set_max_connections", _(&torrent_handle::set_max_connections)) .def("set_tracker_login", _(&torrent_handle::set_tracker_login)) .def("move_storage", _(&torrent_handle::move_storage)) - .def("info_hash", _(&torrent_handle::info_hash), copy) + .def("info_hash", _(&torrent_handle::info_hash)) ; }