Pydap: fix unused parameter

Change-Id: I8b389129d861b9f138c3faa3eaf5c4317afffd09
Reviewed-by: Artem Sokolovskii <artem.sokolovskii@qt.io>
This commit is contained in:
David Schulz
2023-12-19 10:08:26 +01:00
parent b37cd984db
commit ec0d539b39

View File

@@ -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)