Skip to content

Commit

Permalink
fix message log for zip errors (#34820)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 3, 2020
1 parent 5c72f83 commit 644cce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsziputils.cpp
Expand Up @@ -122,7 +122,7 @@ bool QgsZipUtils::unzip( const QString &zipFilename, const QString &dir, QString
}
else
{
QgsMessageLog::logMessage( QObject::tr( "Error opening zip archive: '%1' (Error code: %2)" ).arg( z ? zip_strerror( z ) : zipFilename, rc ) );
QgsMessageLog::logMessage( QObject::tr( "Error opening zip archive: '%1' (Error code: %2)" ).arg( z ? zip_strerror( z ) : zipFilename ).arg( rc ) );
return false;
}

Expand Down

0 comments on commit 644cce5

Please sign in to comment.