Skip to content

Commit

Permalink
Python: cleaned up the code for the PythonSupport plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Oct 30, 2019
1 parent ba8d83e commit 3932af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/support/PythonSupport/src/pythonsupportplugin.cpp
Expand Up @@ -98,9 +98,9 @@ void PythonSupportPlugin::initializePlugin()
QString pythonHome = QCoreApplication::applicationDirPath()+"/../";

#if defined(Q_OS_WIN)
pythonDir += "Python";
pythonHome += "Python";
#elif defined(Q_OS_LINUX)
pythonDir += "python";
pythonHome += "python";
#elif defined(Q_OS_MAC)
pythonHome += "Frameworks/Python";
#endif
Expand Down

0 comments on commit 3932af3

Please sign in to comment.