We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e0ff3a5 commit 1fe91a5Copy full SHA for 1fe91a5
src/python/qgspythonutilsimpl.cpp
@@ -443,10 +443,10 @@ QStringList QgsPythonUtilsImpl::extraPluginsPaths()
443
QString paths = QString::fromLocal8Bit( cpaths );
444
#ifndef Q_OS_WIN
445
if ( paths.contains( ':' ) )
446
- return paths.split( ':' );
+ return paths.split( ':', QString::SkipEmptyParts );
447
#endif
448
if ( paths.contains( ';' ) )
449
- return paths.split( ';' );
+ return paths.split( ';', QString::SkipEmptyParts );
450
else
451
return QStringList( paths );
452
}
0 commit comments