mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-05 00:15:30 +00:00
API: Normalize paths to Python interpreter
This commit is contained in:
parent
3ebe124ae7
commit
d83e6326a5
scripting
@ -24,6 +24,7 @@
|
||||
|
||||
#include <paths.h>
|
||||
#include <python_manager.h>
|
||||
#include <wx_filename.h>
|
||||
|
||||
|
||||
class PYTHON_PROCESS : public wxProcess
|
||||
@ -72,6 +73,14 @@ private:
|
||||
};
|
||||
|
||||
|
||||
PYTHON_MANAGER::PYTHON_MANAGER( const wxString& aInterpreterPath )
|
||||
{
|
||||
wxFileName path( aInterpreterPath );
|
||||
path.Normalize( FN_NORMALIZE_FLAGS );
|
||||
m_interpreterPath = path.GetFullPath();
|
||||
}
|
||||
|
||||
|
||||
void PYTHON_MANAGER::Execute( const wxString& aArgs,
|
||||
const std::function<void( int, const wxString&,
|
||||
const wxString& )>& aCallback,
|
||||
|
@ -32,9 +32,7 @@
|
||||
class KICOMMON_API PYTHON_MANAGER
|
||||
{
|
||||
public:
|
||||
PYTHON_MANAGER( const wxString& aInterpreterPath ) :
|
||||
m_interpreterPath( aInterpreterPath )
|
||||
{}
|
||||
PYTHON_MANAGER( const wxString& aInterpreterPath );
|
||||
|
||||
void Execute( const wxString& aArgs,
|
||||
const std::function<void(int, const wxString&, const wxString&)>& aCallback,
|
||||
|
Loading…
Reference in New Issue
Block a user