We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e573ce9 commit d8dc04fCopy full SHA for d8dc04f
src/python/qgspythonutilsimpl.cpp
@@ -462,7 +462,7 @@ QStringList QgsPythonUtilsImpl::pluginList()
462
463
QString output;
464
evalString( "'\\n'.join(qgis.utils.available_plugins)", output );
465
- return output.split( QChar( '\n' ) );
+ return output.split( QChar( '\n' ), QString::SkipEmptyParts );
466
}
467
468
QString QgsPythonUtilsImpl::getPluginMetadata( QString pluginName, QString function )
@@ -513,5 +513,5 @@ QStringList QgsPythonUtilsImpl::listActivePlugins()
513
{
514
515
evalString( "'\\n'.join(qgis.utils.active_plugins)", output );
516
517
0 commit comments