diff --git a/common/kiway.cpp b/common/kiway.cpp index 18a7a3baad..5581dc4a46 100644 --- a/common/kiway.cpp +++ b/common/kiway.cpp @@ -165,6 +165,7 @@ const wxString KIWAY::dso_search_path( FACE_T aFaceId ) switch( aFaceId ) { case FACE_PL_EDITOR: dirName = "pagelayout_editor"; break; + case FACE_PYTHON: dirName = "scripting"; break; default: dirName = name + 1; break; } diff --git a/scripting/python_scripting.cpp b/scripting/python_scripting.cpp index 3d7027d7b9..51984bbeb8 100644 --- a/scripting/python_scripting.cpp +++ b/scripting/python_scripting.cpp @@ -36,6 +36,7 @@ #include #include +#include #include #include #include