diff --git a/CMakeLists.txt b/CMakeLists.txt
index f231da764b550011f9a925df33f6e6ee3c67ee53..9e3c6be17a9e368603f57a1ab9d5f8f2f29dfa9f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
 SET( CPACK_PACKAGE_NAME  "${PROJECT_NAME}")
 SET( CPACK_PACKAGE_VERSION_MAJOR 4)
 SET( CPACK_PACKAGE_VERSION_MINOR 1)
-SET( CPACK_PACKAGE_VERSION_PATCH 59)
+SET( CPACK_PACKAGE_VERSION_PATCH 60)
 
 # init CellFrame SDK
 add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}\"")
diff --git a/sources/main.c b/sources/main.c
index c0efca45f0af6aa913e208b28e0dc506fe381712..db8c97d544b2b9645b07d15f5d4601c9a851f72e 100755
--- a/sources/main.c
+++ b/sources/main.c
@@ -116,6 +116,7 @@
 
 #ifdef DAP_SUPPORT_PYTHON_PLUGINS
     #include "dap_chain_plugins.h"
+    #include "dap_plugins_python_app_context.h"
 #endif
 
 
@@ -473,6 +474,7 @@ int main( int argc, const char **argv )
     //Init python plugins
     #ifdef DAP_SUPPORT_PYTHON_PLUGINS
         log_it(L_NOTICE, "Loading python plugins");
+        dap_plugins_python_app_content_init(l_server);
         dap_chain_plugins_init(g_config);
     #endif