Remove a redundant semicolon in Python path configuration command

This commit is contained in:
Maciej Suminski 2018-11-02 10:40:05 +01:00
parent 1c19a50f31
commit 23e574fbcd
1 changed files with 1 additions and 1 deletions

View File

@ -739,7 +739,7 @@ if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
if( APPLE ) # extra path for macOS, so that 'wx' module is accessible
set( _py_site_path
"${_py_site_path};sys.path.insert(0, \"${PYTHON_SITE_PACKAGE_PATH}/wx-3.0-osx_cocoa\");" )
"${_py_site_path}sys.path.insert(0, \"${PYTHON_SITE_PACKAGE_PATH}/wx-3.0-osx_cocoa\");" )
endif()
endif()