From 6142acb4be81ab9e6b8ec12560d45019fc289e77 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 3 Nov 2012 04:38:45 +0000 Subject: [PATCH] merged python fix from RC_0_16 --- bindings/python/src/session.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bindings/python/src/session.cpp b/bindings/python/src/session.cpp index b62a6388a..5ddd64294 100644 --- a/bindings/python/src/session.cpp +++ b/bindings/python/src/session.cpp @@ -688,4 +688,9 @@ void bind_session() def("high_performance_seed", high_performance_seed); def("min_memory_usage", min_memory_usage); + + scope().attr("create_metadata_plugin") = "metadata_transfer"; + scope().attr("create_ut_metadata_plugin") = "ut_metadata"; + scope().attr("create_ut_pex_plugin") = "ut_pex"; + scope().attr("create_smart_ban_plugin") = "smart_ban"; }