Skip to content

Commit d10eb89

Browse files
committedDec 19, 2018
Fix error message string (minor change)
1 parent 30b55cc commit d10eb89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/spatialite/qgsspatialiteprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ QList<QString> QgsSpatiaLiteProvider::tablePrimaryKeys( const QString tableName
11451145
}
11461146
else
11471147
{
1148-
QgsLogger::warning( QStringLiteral( "SQLite error discovering relations: %1" ).arg( errMsg ) );
1148+
QgsLogger::warning( QStringLiteral( "SQLite error discovering primary keys: %1" ).arg( errMsg ) );
11491149
sqlite3_free( errMsg );
11501150
}
11511151
return result;

0 commit comments

Comments
 (0)
Please sign in to comment.