Cleanup a few more raw strings

(cherry picked from commit 455e330f3b)
This commit is contained in:
Seth Hillbrand 2022-03-10 11:22:18 -08:00
parent a2e66f6667
commit 826096790d
1 changed files with 4 additions and 4 deletions

View File

@ -158,7 +158,7 @@ bool SCRIPTING::scriptingSetup()
// Prevent Mac builds from generating JIT versions as this will break
// the package signing
wxSetEnv( "PYTHONDONTWRITEBYTECODE", "1" );
wxSetEnv( wxT( "PYTHONDONTWRITEBYTECODE" ), wxT( "1" ) );
// Add default paths to PYTHONPATH
wxString pypath;
@ -167,7 +167,7 @@ bool SCRIPTING::scriptingSetup()
pypath += PATHS::GetOSXKicadDataDir() + wxT( "/scripting" );
// $(KICAD_PATH)/scripting/plugins is always added in kicadplugins.i
if( wxGetenv("KICAD_PATH") != nullptr )
if( wxGetenv( "KICAD_PATH" ) != nullptr )
{
pypath += wxT( ":" ) + wxString( wxGetenv("KICAD_PATH") );
}
@ -183,7 +183,7 @@ bool SCRIPTING::scriptingSetup()
}
// set $PYTHONPATH
wxSetEnv( "PYTHONPATH", pypath );
wxSetEnv( wxT( "PYTHONPATH" ), pypath );
wxString pyhome;
@ -191,7 +191,7 @@ bool SCRIPTING::scriptingSetup()
wxT( "Contents/Frameworks/Python.framework/Versions/Current" );
// set $PYTHONHOME
wxSetEnv( "PYTHONHOME", pyhome );
wxSetEnv( wxT( "PYTHONHOME" ), pyhome );
#else
wxString pypath;