Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix capitalsation
  • Loading branch information
mbernasocchi committed Feb 18, 2019
1 parent af4ee04 commit a643c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsziputils.cpp
Expand Up @@ -129,7 +129,7 @@ bool QgsZipUtils::unzip( const QString &zipFilename, const QString &dir, QString
}
else
{
QString err = QObject::tr( "Error opening zip archive: '%1' (ERROR: %2)" ).arg( z ? zip_strerror( z ) : zipFilename, rc );
QString err = QObject::tr( "Error opening zip archive: '%1' (Error code: %2)" ).arg( z ? zip_strerror( z ) : zipFilename, rc );
QgsMessageLog::logMessage( err, QStringLiteral( "QgsZipUtils" ) );
return false;
}
Expand Down

0 comments on commit a643c87

Please sign in to comment.