Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
fix typo; the important mode flag was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
pathmann committed Jan 27, 2017
1 parent ed15ff9 commit fc0148e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pythonhost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ bool PythonHost::setupDirectories(QString &error) {
}

#ifdef Q_OS_UNIX
if (chmod(interpreterpath.toUtf8().data(), S_IRUSR | S_IWUSR | S_IWUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == -1)
if (chmod(interpreterpath.toUtf8().data(), S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == -1)
ts3logdispatcher::instance()->add(QObject::tr("Setting file permissions of the python interpreter failed, you may need to manually set chmod u+x to %1 (%2)").arg(interpreterpath).arg(errno), LogLevel_ERROR);
#endif

Expand Down

0 comments on commit fc0148e

Please sign in to comment.