Skip to content

Commit

Permalink
Change error string
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso authored and nyalldawson committed Nov 8, 2022
1 parent bbb045e commit 99a8b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterlayer.cpp
Expand Up @@ -1078,7 +1078,7 @@ void QgsRasterLayer::readRasterAttributeTableExternalPaths( const QDomNode &laye
const QString path { context.pathResolver().readPath( ratElement.attributes().namedItem( QStringLiteral( "path" ) ).nodeValue() ) };
if ( ! QFile::exists( path ) )
{
QgsMessageLog::logMessage( tr( "Raster attribute table not found at path: %1." ).arg( path ), tr( "Raster" ) );
QgsMessageLog::logMessage( tr( "Error loading raster attribute table, file not found: %1." ).arg( path ), tr( "Raster" ) );
continue;
}

Expand Down

0 comments on commit 99a8b7a

Please sign in to comment.