Fix torrent_handle.cpp in python bindings to compile.

This commit is contained in:
Andrew Resch 2008-04-15 22:32:53 +00:00
parent 9d397a3834
commit 73d9db3877
1 changed files with 1 additions and 1 deletions

View File

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