Skip to content

Commit

Permalink
Fix banned keyword use
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 16, 2018
1 parent 230e3b4 commit 7bd0285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -1401,7 +1401,7 @@ void QgsPluginManager::buttonInstallFromZip_clicked()
if ( !showInstallFromZipWarning || msgbox.result() == QMessageBox::Yes )
{
QgsPythonRunner::run( QStringLiteral( "pyplugin_installer.instance().installFromZipFile(r'%1')" ).arg( mZipFileWidget->filePath() ) );
mZipFileWidget->setFilePath( QLatin1String( "" ) );
mZipFileWidget->setFilePath( QString() );
}
}

Expand Down

0 comments on commit 7bd0285

Please sign in to comment.