From 77710e4ac0709582b72f5f081cd5f4df4c490295 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Tue, 16 Jul 2013 23:26:07 +0000 Subject: [PATCH] merged python fix from RC_0_16 --- bindings/python/src/torrent_info.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bindings/python/src/torrent_info.cpp b/bindings/python/src/torrent_info.cpp index 749476377..95eacc780 100644 --- a/bindings/python/src/torrent_info.cpp +++ b/bindings/python/src/torrent_info.cpp @@ -284,5 +284,8 @@ void bind_torrent_info() .value("source_magnet_link", announce_entry::source_magnet_link) .value("source_tex", announce_entry::source_tex) ; + + implicitly_convertible, boost::intrusive_ptr >(); + boost::python::register_ptr_to_python >(); }