7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-07 18:25:31 +00:00

Fix PCM logger format string usage.

This commit is contained in:
Alex Shvartzkop 2025-01-22 13:33:59 +03:00
parent 76849b05a7
commit 4eaadcae5c

View File

@ -274,7 +274,7 @@ bool PLUGIN_CONTENT_MANAGER::FetchRepository( const wxString& aUrl, PCM_REPOSITO
{
if( m_dialog )
{
wxLogError( wxString::Format( _( "Unable to parse repository: %s" ), e.what() ) );
wxLogError( _( "Unable to parse repository: %s" ), e.what() );
wxLogError( _( "The given repository URL does not look like a valid KiCad package "
"repository. Please double check the URL." ) );
}