Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix message log string
  • Loading branch information
elpaso committed Dec 19, 2018
1 parent 7d052e2 commit b26a5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialiteprovider.cpp
Expand Up @@ -1145,7 +1145,7 @@ QList<QString> QgsSpatiaLiteProvider::tablePrimaryKeys( const QString tableName
}
else
{
QgsLogger::warning( QStringLiteral( "SQLite error discovering relations: %1" ).arg( errMsg ) );
QgsLogger::warning( QStringLiteral( "SQLite error discovering primary keys: %1" ).arg( errMsg ) );
sqlite3_free( errMsg );
}
return result;
Expand Down

0 comments on commit b26a5c4

Please sign in to comment.