forked from qt-creator/qt-creator
Pydap: fix unused parameter
Change-Id: I8b389129d861b9f138c3faa3eaf5c4317afffd09 Reviewed-by: Artem Sokolovskii <artem.sokolovskii@qt.io>
This commit is contained in:
@@ -42,7 +42,7 @@ static FilePath packageDir(const FilePath &python, const QString &packageName)
|
|||||||
{
|
{
|
||||||
expected_str<FilePath> baseDir = python.needsDevice() ? python.tmpDir()
|
expected_str<FilePath> baseDir = python.needsDevice() ? python.tmpDir()
|
||||||
: Core::ICore::userResourcePath();
|
: Core::ICore::userResourcePath();
|
||||||
return baseDir ? baseDir->pathAppended("debugpy") : FilePath();
|
return baseDir ? baseDir->pathAppended(packageName) : FilePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool missingModuleInstallation(const FilePath &python, const QString &packageName)
|
static bool missingModuleInstallation(const FilePath &python, const QString &packageName)
|
||||||
|
Reference in New Issue
Block a user